Add spigot 1.20.2 support

This commit is contained in:
Michael Primm 2023-09-21 20:13:15 -05:00
parent 0240e4a2ae
commit c2f9efd29c
15 changed files with 887 additions and 21 deletions

View file

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