f7a9065b75
#KTI-82
17 lines
329 B
Kotlin
17 lines
329 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":compiler:util"))
|
|
api(project(":core:descriptors"))
|
|
api(project(":compiler:resolution.common"))
|
|
compileOnly(commonDependency("org.jetbrains.intellij.deps:trove4j"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|