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" + } +}