d3c03325c9
Versions of external libraries should be listed in version catalog, not directly in a build file
16 lines
436 B
Kotlin
16 lines
436 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(commonDependency("org.jetbrains.intellij.deps:asm-all"))
|
|
implementation(commonDependency("org.apache.commons:commons-text"))
|
|
|
|
implementation(project(":tools:kotlinp"))
|
|
implementation(project(":kotlinx-metadata-jvm"))
|
|
implementation(project(":kotlinx-metadata"))
|
|
|
|
testImplementation("org.jetbrains.kotlin:kotlin-test-junit")
|
|
}
|