Spigot/Paper 1.21.9-1.21.10 basic support

This commit is contained in:
jacob1 2025-09-30 21:47:48 -04:00
parent f9a568a3c4
commit 786bf4e6e6
8 changed files with 730 additions and 2 deletions

View file

@ -0,0 +1,19 @@
eclipse {
project {
name = "Dynmap(Spigot-1.21.10)"
}
}
description = 'bukkit-helper-1.21.10'
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.10-R0.1-SNAPSHOT'
compileOnly ('org.spigotmc:spigot:1.21.10-R0.1-SNAPSHOT') {
exclude group: "com.mojang", module: "jtracy"
}
}