Try to minimize jtracy nonsense

This commit is contained in:
Michael Primm 2025-01-05 10:28:44 -05:00
parent e9c70debb6
commit da377fde3e
2 changed files with 6 additions and 10 deletions

View File

@ -8,14 +8,12 @@ description = 'bukkit-helper-1.21.3'
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = JavaLanguageVersion.of(17) // Need this here so eclipse task generates correctly.
configurations.all {
exclude group: "com.mojang", module: "jtracy"
}
dependencies {
implementation project(':bukkit-helper')
implementation project(':dynmap-api')
implementation project(path: ':DynmapCore', configuration: 'shadow')
compileOnly group: 'org.spigotmc', name: 'spigot-api', version:'1.21.3-R0.1-SNAPSHOT'
compileOnly group: 'org.spigotmc', name: 'spigot', version:'1.21.3-R0.1-SNAPSHOT'
implementation ('org.spigotmc:spigot:1.21.3-R0.1-SNAPSHOT') {
exclude group: "com.mojang", module: "jtracy"
}
}

View File

@ -8,14 +8,12 @@ description = 'bukkit-helper-1.21.4'
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = JavaLanguageVersion.of(17) // Need this here so eclipse task generates correctly.
configurations.all {
exclude group: "com.mojang", module: "jtracy"
}
dependencies {
implementation project(':bukkit-helper')
implementation project(':dynmap-api')
implementation project(path: ':DynmapCore', configuration: 'shadow')
compileOnly group: 'org.spigotmc', name: 'spigot-api', version:'1.21.4-R0.1-SNAPSHOT'
compileOnly group: 'org.spigotmc', name: 'spigot', version:'1.21.4-R0.1-SNAPSHOT'
implementation ('org.spigotmc:spigot:1.21.4-R0.1-SNAPSHOT') {
exclude group: "com.mojang", module: "jtracy"
}
}