0

build(gradle): Upgrade Gradle

6.8 -> 8.8
This commit is contained in:
2024-06-30 23:29:07 +03:00
parent c04f46a602
commit bfdad404d5
8 changed files with 276 additions and 203 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.8.8"
compileJava {
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
options.encoding = "UTF-8"
}
repositories {
mavenLocal()
mavenCentral()
flatDir { dirs rootDir.toPath().resolve("libs").toFile() }
}
}