Forge 1.20 - start Spigot 1.20

This commit is contained in:
Michael Primm 2023-06-08 15:53:11 -05:00
parent 58fc5665e0
commit ac08bea145
31 changed files with 4504 additions and 27 deletions

View file

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