build: Upgrade Gradle

6.8 -> 8.8
This commit is contained in:
2024-07-08 15:45:43 +03:00
parent f2292cf54f
commit ef204483fa
7 changed files with 54 additions and 51 deletions

22
build.gradle Normal file
View File

@@ -0,0 +1,22 @@
wrapper {
gradleVersion = "8.8"
distributionType = Wrapper.DistributionType.BIN
}
subprojects { prj ->
apply plugin: "java"
group = "minecraft"
version = "1.2.5"
compileJava {
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
options.encoding = "UTF-8"
}
repositories {
mavenLocal()
mavenCentral()
flatDir { dirs rootDir.toPath().resolve("libs").toFile() }
}
}