23 lines
458 B
Kotlin
23 lines
458 B
Kotlin
plugins {
|
|
id("jadx-library")
|
|
id("jadx-kotlin")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":jadx-core"))
|
|
|
|
implementation("org.jetbrains.kotlin:kotlin-metadata-jvm:2.3.10")
|
|
|
|
testImplementation(
|
|
project
|
|
.project(":jadx-core")
|
|
.sourceSets
|
|
.getByName("test")
|
|
.output,
|
|
)
|
|
testImplementation("org.apache.commons:commons-lang3:3.20.0")
|
|
|
|
testRuntimeOnly(project(":jadx-plugins:jadx-smali-input"))
|
|
testRuntimeOnly(project(":jadx-plugins:jadx-java-input"))
|
|
}
|