Add initial AccessWidener

This commit is contained in:
2026-06-11 12:22:44 +02:00
parent e176b3bca8
commit 786257ad0e
15 changed files with 979 additions and 6 deletions
+9
View File
@@ -20,15 +20,22 @@
plugins {
`java-library`
alias(libs.plugins.shadow)
id("io.papermc.paperweight.userdev") version "1.7.1"
}
tasks.build {
finalizedBy(tasks.shadowJar)
}
repositories {
maven("https://repo.papermc.io/repository/maven-public/")
}
dependencies {
implementation(project(":BauSystem:BauSystem_RegionFixed"))
implementation(project(":BauSystem:BauSystem_Main"))
paperweight.paperDevBundle("1.21.1-R0.1-SNAPSHOT")
}
tasks.register<DevServer>("DevBau21") {
@@ -37,5 +44,7 @@ tasks.register<DevServer>("DevBau21") {
dependsOn(":SpigotCore:shadowJar")
dependsOn(":BauSystem:shadowJar")
dependsOn(":SchematicSystem:shadowJar")
dependsOn(":AccessWidener:shadowJar")
template = "Bau21"
jvmArgs = "-javaagent:/home/yoyonow/Bau21/plugins/AccessWidener.jar=start"
}