[*] Modernize Gradle setup

Version catalog and convention plugin instead of allprojects/subprojects
This commit is contained in:
2025-02-22 22:55:06 +01:00
parent f10a23a0f5
commit b466ccd577
20 changed files with 192 additions and 113 deletions

View File

@@ -1,4 +1,8 @@
dependencies {
implementation("org.ow2.asm:asm:${properties["asm.version"]}")
implementation("org.ow2.asm:asm-commons:${properties["asm.version"]}")
plugins {
id("de.siphalor.tweed5.base-module")
}
dependencies {
implementation(libs.asm.core)
implementation(libs.asm.commons)
}