Spigot / Paper 1.21.3 support

This commit is contained in:
jacob1 2024-11-09 20:56:09 -05:00
parent 6b52f94884
commit abf7332cb4
14 changed files with 688 additions and 8 deletions

View file

@ -0,0 +1,17 @@
eclipse {
project {
name = "Dynmap(Spigot-1.21.3)"
}
}
description = 'bukkit-helper-1.21.3'
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.3-R0.1-SNAPSHOT'
compileOnly group: 'org.spigotmc', name: 'spigot', version:'1.21.3-R0.1-SNAPSHOT'
}