Skip to content

Commit da377fd

Browse files
Try to minimize jtracy nonsense
1 parent e9c70de commit da377fd

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

bukkit-helper-121-3/build.gradle

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,12 @@ description = 'bukkit-helper-1.21.3'
88

99
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = JavaLanguageVersion.of(17) // Need this here so eclipse task generates correctly.
1010

11-
configurations.all {
12-
exclude group: "com.mojang", module: "jtracy"
13-
}
14-
1511
dependencies {
1612
implementation project(':bukkit-helper')
1713
implementation project(':dynmap-api')
1814
implementation project(path: ':DynmapCore', configuration: 'shadow')
1915
compileOnly group: 'org.spigotmc', name: 'spigot-api', version:'1.21.3-R0.1-SNAPSHOT'
20-
compileOnly group: 'org.spigotmc', name: 'spigot', version:'1.21.3-R0.1-SNAPSHOT'
16+
implementation ('org.spigotmc:spigot:1.21.3-R0.1-SNAPSHOT') {
17+
exclude group: "com.mojang", module: "jtracy"
18+
}
2119
}

bukkit-helper-121-4/build.gradle

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,12 @@ description = 'bukkit-helper-1.21.4'
88

99
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = JavaLanguageVersion.of(17) // Need this here so eclipse task generates correctly.
1010

11-
configurations.all {
12-
exclude group: "com.mojang", module: "jtracy"
13-
}
14-
1511
dependencies {
1612
implementation project(':bukkit-helper')
1713
implementation project(':dynmap-api')
1814
implementation project(path: ':DynmapCore', configuration: 'shadow')
1915
compileOnly group: 'org.spigotmc', name: 'spigot-api', version:'1.21.4-R0.1-SNAPSHOT'
20-
compileOnly group: 'org.spigotmc', name: 'spigot', version:'1.21.4-R0.1-SNAPSHOT'
16+
implementation ('org.spigotmc:spigot:1.21.4-R0.1-SNAPSHOT') {
17+
exclude group: "com.mojang", module: "jtracy"
18+
}
2119
}

0 commit comments

Comments
 (0)