24 lines
559 B
Groovy
24 lines
559 B
Groovy
//file:noinspection all
|
|
wrapper {
|
|
gradleVersion = "8.10"
|
|
distributionType = Wrapper.DistributionType.BIN
|
|
}
|
|
|
|
subprojects { prj ->
|
|
apply plugin: "java"
|
|
|
|
group = "minecraft"
|
|
version = "1.2.5"
|
|
|
|
compileJava {
|
|
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_17
|
|
options.encoding = "UTF-8"
|
|
options.compilerArgs << "-Xlint:-unchecked" << "-Xlint:-deprecation"
|
|
}
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
flatDir { dirs rootDir.toPath().resolve("libs").toFile() }
|
|
}
|
|
} |