9
0
mirror of https://github.com/Xiao-MoMi/Custom-Crops.git synced 2025-12-19 15:09:25 +00:00
Files
Custom-Crops/compatibility-nexo-r1/build.gradle.kts
XiaoMoMi d4d09d58c3 3.6.43
2025-07-20 00:32:46 +08:00

25 lines
626 B
Plaintext

repositories {
mavenCentral()
maven("https://repo.nexomc.com/releases/")
maven("https://repo.nexomc.com/snapshots/")
maven("https://repo.papermc.io/repository/maven-public/")
}
dependencies {
compileOnly(project(":api"))
compileOnly("io.papermc.paper:paper-api:1.20.4-R0.1-SNAPSHOT")
compileOnly("com.nexomc:nexo:1.8.0")
}
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
options.release.set(21)
}
java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}