mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-12-25 18:17:37 +01:00
33 lines
620 B
Groovy
33 lines
620 B
Groovy
|
|
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()
|
|
}
|
|
}
|