diff --git a/bukkit-helper-121-3/build.gradle b/bukkit-helper-121-3/build.gradle index fac1f190..d06e77ea 100644 --- a/bukkit-helper-121-3/build.gradle +++ b/bukkit-helper-121-3/build.gradle @@ -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" + } } diff --git a/bukkit-helper-121-4/build.gradle b/bukkit-helper-121-4/build.gradle index 459a1c2c..98aa8028 100644 --- a/bukkit-helper-121-4/build.gradle +++ b/bukkit-helper-121-4/build.gradle @@ -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" + } }