From 96168b13b8a79b78cbfd72b673c07bba41a23cbd Mon Sep 17 00:00:00 2001 From: Mike Primm Date: Mon, 5 Jan 2026 20:37:59 -0500 Subject: [PATCH] Fix missing build file --- bukkit-helper-121-11/build.gradle | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 bukkit-helper-121-11/build.gradle diff --git a/bukkit-helper-121-11/build.gradle b/bukkit-helper-121-11/build.gradle new file mode 100644 index 00000000..5a8ccc1f --- /dev/null +++ b/bukkit-helper-121-11/build.gradle @@ -0,0 +1,19 @@ +eclipse { + project { + name = "Dynmap(Spigot-1.21.11)" + } +} + +description = 'bukkit-helper-1.21.11' + +sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = JavaLanguageVersion.of(17) // Need this here so eclipse task generates correctly. + +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.11-R0.1-SNAPSHOT' + compileOnly ('org.spigotmc:spigot:1.21.11-R0.1-SNAPSHOT') { + exclude group: "com.mojang", module: "jtracy" + } +}