17 lines
288 B
Plaintext
17 lines
288 B
Plaintext
plugins {
|
|
id("java")
|
|
}
|
|
|
|
java {
|
|
toolchain.languageVersion.set(JavaLanguageVersion.of(21))
|
|
}
|
|
|
|
// utf-8
|
|
tasks.withType<JavaCompile> {
|
|
options.encoding = "UTF-8"
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(project(":core"))
|
|
compileOnly("io.papermc.paper:paper-api:1.21-R0.1-SNAPSHOT")
|
|
} |