plugins { id 'java' id 'maven-publish' } group = 'pl.piecuu.invisninja' version = '1.0' java { toolchain.languageVersion = JavaLanguageVersion.of(21) withSourcesJar() } repositories { mavenCentral() mavenLocal() maven { url = 'https://repo.extendedclip.com/releases/' } } dependencies { compileOnly "pl.piecuu.jajoptak:leaf-api:1.21.11-R0.1-SNAPSHOT" compileOnly "me.clip:placeholderapi:2.11.7" } tasks.withType(JavaCompile).configureEach { options.encoding = 'UTF-8' } publishing { publications { mavenJava(MavenPublication) { from components.java } } }