Start 1.18 Spigot work... need to sort through obfuscation bullshit

This commit is contained in:
Mike Primm 2021-11-23 16:43:55 -06:00
parent 0288a41a09
commit d89403d51a
9 changed files with 998 additions and 3 deletions

View file

@ -0,0 +1,32 @@
plugins {
id "io.papermc.paperweight.userdev" version "1.2.0"
}
description = 'bukkit-helper-1.18'
dependencies {
implementation project(':bukkit-helper')
implementation project(':dynmap-api')
implementation project(path: ':DynmapCore', configuration: 'shadow')
paperDevBundle("1.17.1-R0.1-SNAPSHOT")
}
tasks {
// Run reobfJar on build
build {
dependsOn(reobfJar)
}
compileJava {
options.encoding = Charsets.UTF_8.name()
options.release.set(17)
}
javadoc {
options.encoding = Charsets.UTF_8.name()
}
processResources {
filteringCharset = Charsets.UTF_8.name()
}
}