Skip to content

Commit 2382133

Browse files
committed
Move asm-util dep to existing asm bundle
1 parent 93be505 commit 2382133

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ dependencies {
118118

119119
implementation(libs.mixinExtras.expressions)
120120
testLibs(libs.mixinExtras.common)
121-
implementation("org.ow2.asm:asm-util:9.3")
122121

123122
// Kotlin
124123
implementation(kotlin("stdlib-jdk8"))

gradle/libs.versions.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ groovy = "org.codehaus.groovy:groovy-all:2.5.18"
2626
asm = { module = "org.ow2.asm:asm", version.ref = "asm" }
2727
asm-tree = { module = "org.ow2.asm:asm-tree", version.ref = "asm" }
2828
asm-analysis = { module = "org.ow2.asm:asm-analysis", version.ref = "asm" }
29+
asm-util = { module = "org.ow2.asm:asm-util", version.ref = "asm" }
2930

3031
fuel = { module = "com.github.kittinunf.fuel:fuel", version.ref = "fuel" }
3132
fuel-coroutines = { module = "com.github.kittinunf.fuel:fuel-coroutines", version.ref = "fuel" }
@@ -45,5 +46,5 @@ mixinExtras-common = "io.github.llamalad7:mixinextras-common:0.5.0-beta.1"
4546

4647
[bundles]
4748
coroutines = ["coroutines-core", "coroutines-jdk8", "coroutines-swing"]
48-
asm = ["asm", "asm-tree", "asm-analysis"]
49+
asm = ["asm", "asm-tree", "asm-analysis", "asm-util"]
4950
fuel = ["fuel", "fuel-coroutines"]

0 commit comments

Comments
 (0)