feat(01): gradle scaffold (settings, properties, build, wrapper)

This commit is contained in:
2026-04-22 23:23:52 +02:00
parent f9d8f71f0d
commit 628c26aff2
8 changed files with 390 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
plugins {
id 'java'
id 'com.gradleup.shadow' version '9.3.1'
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(25)
}
}
repositories {
mavenCentral()
maven {
name = 'hytale'
url = 'https://maven.hytale.com/release'
}
}
dependencies {
compileOnly 'com.hypixel.hytale:Server:+'
}
tasks.named('jar') {
enabled = false
}
tasks.named('build') {
dependsOn tasks.named('shadowJar')
}
tasks.named('shadowJar') {
archiveClassifier.set('')
}