mirror of
https://github.com/FancyInnovations/FancyPlugins.git
synced 2025-12-06 07:43:36 +00:00
31 lines
604 B
Kotlin
31 lines
604 B
Kotlin
plugins {
|
|
id("java-library")
|
|
id("io.papermc.paperweight.userdev")
|
|
}
|
|
|
|
val minecraftVersion = "1.20.4"
|
|
|
|
dependencies {
|
|
paperweight.paperDevBundle("$minecraftVersion-R0.1-SNAPSHOT")
|
|
|
|
compileOnly(project(":plugins:fancynpcs:fn-api"))
|
|
compileOnly(project(":libraries:common"))
|
|
compileOnly("org.lushplugins:ChatColorHandler:5.1.6")
|
|
}
|
|
|
|
|
|
tasks {
|
|
named("assemble") {
|
|
dependsOn(named("reobfJar"))
|
|
}
|
|
|
|
javadoc {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
}
|
|
|
|
compileJava {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
options.release = 17
|
|
|
|
}
|
|
} |