7b00323b89
Fix some reports from "Show Vulnerable Dependencies" ^KTI-1342
22 lines
580 B
Kotlin
22 lines
580 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":compiler:resolution.common"))
|
|
api(project(":core:compiler.common.jvm"))
|
|
api(project(":compiler:psi"))
|
|
implementation(project(":compiler:util"))
|
|
implementation(commonDependency("io.javaslang","javaslang"))
|
|
compileOnly(intellijCore())
|
|
compileOnly(commonDependency("org.jetbrains.intellij.deps:asm-all"))
|
|
compileOnly(commonDependency("org.jetbrains.intellij.deps:trove4j"))
|
|
compileOnly(libs.guava)
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|