This commit is contained in:
Piecuuu 2026-02-21 19:45:03 +01:00
commit 2cee7aef28
8 changed files with 245 additions and 0 deletions

27
build.gradle Normal file
View file

@ -0,0 +1,27 @@
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'
}