mirror of
https://github.com/FancyInnovations/FancyPlugins.git
synced 2025-12-06 07:43:36 +00:00
28 lines
632 B
Kotlin
28 lines
632 B
Kotlin
plugins {
|
|
id("java-library")
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly("io.papermc.paper:paper-api:1.21.4-R0.1-SNAPSHOT")
|
|
compileOnly(project(":libraries:packets:api"))
|
|
compileOnly(project(":libraries:packets:implementations:1_20_6"))
|
|
compileOnly(project(":libraries:packets:implementations:1_21_3"))
|
|
compileOnly(project(":libraries:packets:implementations:1_21_4"))
|
|
}
|
|
|
|
tasks {
|
|
java {
|
|
withSourcesJar()
|
|
withJavadocJar()
|
|
}
|
|
|
|
javadoc {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
}
|
|
|
|
compileJava {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
options.release = 21
|
|
|
|
}
|
|
} |