18 lines
543 B
Kotlin
18 lines
543 B
Kotlin
plugins {
|
|
id("jadx-kotlin")
|
|
id("jadx-library")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":jadx-plugins:jadx-script:jadx-script-runtime"))
|
|
implementation(project(":jadx-plugins:jadx-script:jadx-script-plugin"))
|
|
|
|
implementation(kotlin("scripting-common"))
|
|
implementation(kotlin("scripting-jvm"))
|
|
implementation(kotlin("scripting-compiler-embeddable"))
|
|
implementation(kotlin("scripting-ide-services"))
|
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2")
|
|
implementation("io.github.oshai:kotlin-logging-jvm:7.0.13")
|
|
}
|