Files
kotlin-fork/libraries/tools/abi-comparator/build.gradle.kts
T
Dmitriy Novozhilov d3c03325c9 [Build] Properly setup the version of Apache commons-text dependency
Versions of external libraries should be listed in version catalog, not
  directly in a build file
2024-01-02 15:07:44 +00:00

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")
}