Start 1.18 Spigot work... need to sort through obfuscation bullshit
This commit is contained in:
parent
0288a41a09
commit
d89403d51a
9 changed files with 998 additions and 3 deletions
32
bukkit-helper-118/build.gradle
Normal file
32
bukkit-helper-118/build.gradle
Normal 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()
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue