7b00323b89
Fix some reports from "Show Vulnerable Dependencies" ^KTI-1342
18 lines
339 B
Kotlin
18 lines
339 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":core:compiler.common.jvm"))
|
|
api(project(":compiler:config.jvm"))
|
|
api(commonDependency("org.jetbrains.intellij.deps:asm-all"))
|
|
api(libs.guava)
|
|
compileOnly(intellijCore())
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|