Add spigot-1.20.4 initial support

This commit is contained in:
Michael Primm 2023-12-12 21:22:38 -06:00
parent 984ea8ba37
commit 31faa83b24
13 changed files with 887 additions and 24 deletions

View file

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