16 lines
310 B
Kotlin
16 lines
310 B
Kotlin
plugins {
|
|
id("jadx-library")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":jadx-core"))
|
|
|
|
api("net.fabricmc:mapping-io:0.8.0") {
|
|
exclude("org.ow2.asm:asm")
|
|
exclude("net.fabricmc:tiny-remapper")
|
|
}
|
|
|
|
testRuntimeOnly(project(":jadx-plugins:jadx-dex-input"))
|
|
testRuntimeOnly(project(":jadx-plugins:jadx-smali-input"))
|
|
}
|