mirror of
https://github.com/FancyInnovations/FancyPlugins.git
synced 2025-12-06 07:43:36 +00:00
Bumps de.oliver.FancyAnalytics:logger from 0.0.4 to 0.0.6. --- updated-dependencies: - dependency-name: de.oliver.FancyAnalytics:logger dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
25 lines
428 B
Kotlin
25 lines
428 B
Kotlin
plugins {
|
|
id("java-library")
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly("io.papermc.paper:paper-api:1.21.4-R0.1-SNAPSHOT")
|
|
compileOnly("de.oliver.FancyAnalytics:logger:0.0.6")
|
|
}
|
|
|
|
tasks {
|
|
java {
|
|
withSourcesJar()
|
|
withJavadocJar()
|
|
}
|
|
|
|
javadoc {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
}
|
|
|
|
compileJava {
|
|
options.encoding = Charsets.UTF_8.name()
|
|
options.release = 21
|
|
|
|
}
|
|
} |