20 lines
339 B
Plaintext
20 lines
339 B
Plaintext
group = "com.willfp"
|
|
version = rootProject.version
|
|
|
|
dependencies {
|
|
compileOnly(project(":eco-core:core-backend"))
|
|
compileOnly("io.papermc.paper:paper-api:1.21-R0.1-SNAPSHOT")
|
|
}
|
|
|
|
tasks {
|
|
compileJava {
|
|
options.release = 21
|
|
}
|
|
|
|
compileKotlin {
|
|
kotlinOptions {
|
|
jvmTarget = "21"
|
|
}
|
|
}
|
|
}
|