28 lines
527 B
Groovy
28 lines
527 B
Groovy
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"
|
|
compileOnly "pl.piecuu.invisninja:invis_ninja:1.0"
|
|
}
|
|
|
|
tasks.withType(JavaCompile).configureEach {
|
|
options.encoding = 'UTF-8'
|
|
}
|