plugins { id 'java' } group = 'pl.piecuu' version = '1.0' java { toolchain.languageVersion = JavaLanguageVersion.of(21) } 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' }