mirror of
https://github.com/FancyInnovations/FancyPlugins.git
synced 2025-12-06 07:43:36 +00:00
33 lines
614 B
Kotlin
33 lines
614 B
Kotlin
plugins {
|
|
id("java-library")
|
|
id("io.papermc.paperweight.userdev")
|
|
}
|
|
|
|
|
|
val minecraftVersion = "1.20.2"
|
|
|
|
|
|
dependencies {
|
|
paperweight.paperDevBundle("$minecraftVersion-R0.1-SNAPSHOT")
|
|
|
|
implementation(project(":plugins:fancyholograms:api"))
|
|
implementation(project(":libraries:common"))
|
|
compileOnly("com.viaversion:viaversion-api:5.2.1")
|
|
}
|
|
|
|
|
|
tasks {
|
|
named("assemble") {
|
|
dependsOn(named("reobfJar"))
|
|
}
|
|
|
|
javadoc {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
}
|
|
|
|
compileJava {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
|
|
options.release.set(17)
|
|
}
|
|
} |