mirror of
https://github.com/FancyInnovations/FancyPlugins.git
synced 2025-12-06 07:43:36 +00:00
27 lines
664 B
Kotlin
27 lines
664 B
Kotlin
plugins {
|
|
id("java-library")
|
|
id("io.papermc.paperweight.userdev")
|
|
}
|
|
|
|
paperweight.reobfArtifactConfiguration = io.papermc.paperweight.userdev.ReobfArtifactConfiguration.MOJANG_PRODUCTION
|
|
|
|
dependencies {
|
|
paperweight.paperDevBundle("1.21.5-R0.1-SNAPSHOT")
|
|
compileOnly("com.fancyinnovations:fancymc:25w21a")
|
|
|
|
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
|
|
}
|
|
} |