mirror of
https://github.com/FancyInnovations/FancyPlugins.git
synced 2025-12-06 07:43:36 +00:00
25 lines
428 B
Kotlin
25 lines
428 B
Kotlin
plugins {
|
|
id("java-library")
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly("io.papermc.paper:paper-api:1.21.9-R0.1-SNAPSHOT")
|
|
compileOnly("de.oliver.FancyAnalytics:logger:0.0.8")
|
|
}
|
|
|
|
tasks {
|
|
java {
|
|
withSourcesJar()
|
|
withJavadocJar()
|
|
}
|
|
|
|
javadoc {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
}
|
|
|
|
compileJava {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
options.release = 21
|
|
|
|
}
|
|
} |