Files
FancyPlugins/libraries/packets/api/build.gradle.kts
dependabot[bot] 80fb8c29ec chore(deps): bump de.oliver.FancyAnalytics:logger from 0.0.4 to 0.0.6
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>
2025-03-15 15:23:35 +01:00

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
}
}