mirror of
https://github.com/Xiao-MoMi/Custom-Fishing.git
synced 2025-12-19 15:09:24 +00:00
30 lines
948 B
Plaintext
30 lines
948 B
Plaintext
repositories {
|
|
mavenCentral()
|
|
maven("https://repo.nexomc.com/releases/")
|
|
maven("https://repo.nexomc.com/snapshots/")
|
|
maven("https://repo.papermc.io/repository/maven-public/")
|
|
maven("https://repo.momirealms.net/releases/")
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(project(":api"))
|
|
compileOnly("io.papermc.paper:paper-api:1.20.4-R0.1-SNAPSHOT")
|
|
compileOnly("com.nexomc:nexo:1.7.3")
|
|
compileOnly("net.momirealms:craft-engine-core:0.0.57")
|
|
compileOnly("net.momirealms:craft-engine-bukkit:0.0.57")
|
|
compileOnly("net.momirealms:sparrow-heart:${rootProject.properties["sparrow_heart_version"]}")
|
|
compileOnly(files("libs/AuraSkills-2.3.4.jar"))
|
|
}
|
|
|
|
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)
|
|
}
|
|
} |