Files
FancyPlugins/plugins/fancynpcs/implementation_1_21_4/build.gradle.kts
2025-05-17 10:30:14 +02:00

28 lines
653 B
Kotlin

plugins {
id("java-library")
id("io.papermc.paperweight.userdev")
}
val minecraftVersion = "1.21.4"
paperweight.reobfArtifactConfiguration = io.papermc.paperweight.userdev.ReobfArtifactConfiguration.MOJANG_PRODUCTION
dependencies {
paperweight.paperDevBundle("$minecraftVersion-R0.1-SNAPSHOT")
compileOnly(project(":plugins:fancynpcs:fn-api"))
compileOnly(project(":libraries:common"))
compileOnly("org.lushplugins:ChatColorHandler:5.1.3")
}
tasks {
javadoc {
options.encoding = Charsets.UTF_8.name()
}
compileJava {
options.encoding = Charsets.UTF_8.name()
options.release = 21
}
}