7b00323b89
Fix some reports from "Show Vulnerable Dependencies" ^KTI-1342
17 lines
272 B
Kotlin
17 lines
272 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":compiler:config"))
|
|
api(project(":compiler:container"))
|
|
compileOnly(intellijCore())
|
|
compileOnly(libs.guava)
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|