build(gradle): Upgrade Gradle
6.8 -> 8.8
This commit is contained in:
22
build.gradle
Normal file
22
build.gradle
Normal file
@@ -0,0 +1,22 @@
|
||||
wrapper {
|
||||
gradleVersion = "8.8"
|
||||
distributionType = Wrapper.DistributionType.BIN
|
||||
}
|
||||
|
||||
subprojects { prj ->
|
||||
apply plugin: "java"
|
||||
|
||||
group = "minecraft"
|
||||
version = "1.8.8"
|
||||
|
||||
compileJava {
|
||||
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
|
||||
options.encoding = "UTF-8"
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenLocal()
|
||||
mavenCentral()
|
||||
flatDir { dirs rootDir.toPath().resolve("libs").toFile() }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user