18 lines
439 B
Kotlin
18 lines
439 B
Kotlin
plugins {
|
|
id("jadx-library")
|
|
id("jadx-kotlin")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":jadx-plugins:jadx-script:jadx-script-runtime"))
|
|
implementation(project(":jadx-commons:jadx-app-commons"))
|
|
|
|
implementation(kotlin("scripting-common"))
|
|
implementation(kotlin("scripting-jvm"))
|
|
implementation(kotlin("scripting-jvm-host"))
|
|
|
|
implementation("io.github.oshai:kotlin-logging-jvm:7.0.6")
|
|
|
|
testImplementation(project(":jadx-core"))
|
|
}
|