Start 1.20.5 code

This commit is contained in:
Michael Primm 2024-04-26 20:54:41 -05:00
parent 4aad73cff8
commit 0ecb064940
12 changed files with 891 additions and 29 deletions

View file

@ -0,0 +1,17 @@
eclipse {
project {
name = "Dynmap(Spigot-1.20.5)"
}
}
description = 'bukkit-helper-1.20.5'
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.5-R0.1-SNAPSHOT'
}