fix(build): make ASM an api dependency
Some checks failed
Maven release / build (push) Failing after 1m0s

This commit is contained in:
Ashhhleyyy 2024-03-12 20:52:12 +00:00
parent 8449459d2c
commit 6f50ed0eba
Signed by: ash
GPG key ID: 83B789081A0878FB

View file

@ -13,8 +13,8 @@ repositories {
dependencies { dependencies {
val asmVersion = "9.6" val asmVersion = "9.6"
implementation("org.ow2.asm:asm:$asmVersion") api("org.ow2.asm:asm:$asmVersion")
implementation("org.ow2.asm:asm-tree:$asmVersion") api("org.ow2.asm:asm-tree:$asmVersion")
testImplementation(platform("org.junit:junit-bom:5.9.1")) testImplementation(platform("org.junit:junit-bom:5.9.1"))
testImplementation("org.junit.jupiter:junit-jupiter") testImplementation("org.junit.jupiter:junit-jupiter")