mirror of
https://github.com/ColdeZhang/Dominion.git
synced 2024-12-26 16:19:04 +08:00
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")
|
||
|
}
|