packets: update project references from packets:api to packets:packets-api

This commit is contained in:
Oliver
2025-03-29 20:55:38 +01:00
parent ba95dc4a8e
commit 215ecbb692
47 changed files with 22 additions and 18 deletions

View File

@@ -0,0 +1,25 @@
plugins {
id("java-library")
}
dependencies {
compileOnly("io.papermc.paper:paper-api:1.21.5-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
}
}