From da377fde3e88a3704c051aa2cd78b98d44964dc9 Mon Sep 17 00:00:00 2001 From: Michael Primm Date: Sun, 5 Jan 2025 10:28:44 -0500 Subject: [PATCH] Try to minimize jtracy nonsense --- bukkit-helper-121-3/build.gradle | 8 +++----- bukkit-helper-121-4/build.gradle | 8 +++----- 2 files changed, 6 insertions(+), 10 deletions(-) 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" + } }