From 58408bbe55bfa6b6279ef60b81ebcf54855cbb37 Mon Sep 17 00:00:00 2001 From: Michael Primm Date: Sat, 4 Jan 2025 23:06:09 -0500 Subject: [PATCH] Try excluding jtracy --- bukkit-helper-121-3/build.gradle | 4 ++++ bukkit-helper-121-4/build.gradle | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/bukkit-helper-121-3/build.gradle b/bukkit-helper-121-3/build.gradle index 4a8ec0c5..fac1f190 100644 --- a/bukkit-helper-121-3/build.gradle +++ b/bukkit-helper-121-3/build.gradle @@ -8,6 +8,10 @@ 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') diff --git a/bukkit-helper-121-4/build.gradle b/bukkit-helper-121-4/build.gradle index be102b8c..459a1c2c 100644 --- a/bukkit-helper-121-4/build.gradle +++ b/bukkit-helper-121-4/build.gradle @@ -8,6 +8,10 @@ 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')