diff --git a/build.gradle.kts b/build.gradle.kts index 467eff181..9247a3c87 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -25,7 +25,7 @@ repositories { } dependencies { - implementation(libs.bundles.linkstone) + //implementation(libs.bundles.linkstone) implementation(libs.bundles.glowstone) implementation(libs.jansi) @@ -40,6 +40,7 @@ dependencies { exclude(group = "org.slf4j", module = "slf4j-simple") } implementation(libs.maven.artifact) + implementation(libs.asm) runtimeOnly(libs.log4j) runtimeOnly("com.lmax:disruptor:3.4.4") diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 6bae085ca..c1a57db9e 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -20,6 +20,7 @@ junit-ext = "5.7.2" hamcrest = "2.2" powermock = "2.0.9" jetbrains-annotations = "21.0.1" +asm = "9.4" [libraries] linkstone-annotations = { module = "net.glowstone:linkstone-annotations", version.ref = "linkstone" } @@ -41,6 +42,7 @@ fastutil = { module = "co.aikar:fastutil-lite", version.ref = "fastutil" } flow = { module = "com.flowpowered:flow-network", version.ref = "flow" } fastuuid = { module = "com.eatthepath:fast-uuid", version.ref = "fastuuid" } brigadier = { module = "com.mojang:brigadier", version.ref = "brigadier" } +asm = { module = "org.ow2.asm:asm", version.ref = "asm" } junit-core = { module = "junit:junit", version.ref = "junit-core" } junit-vintage-engine = { module = "org.junit.vintage:junit-vintage-engine", version.ref = "junit-ext" }