plugins { id("java-library") } dependencies { compileOnly("io.papermc.paper:paper-api:1.21.8-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 } }