9
0
mirror of https://github.com/Xiao-MoMi/Custom-Crops.git synced 2026-01-04 15:41:46 +00:00
Files
Custom-Crops/compatibility-oraxen-r2/build.gradle.kts
XiaoMoMi bbde4ebd47 3.6
2024-08-31 22:57:45 +08:00

25 lines
624 B
Plaintext

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