f7a9065b75
#KTI-82
17 lines
304 B
Kotlin
17 lines
304 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":compiler:config"))
|
|
api(project(":compiler:container"))
|
|
compileOnly(intellijCore())
|
|
compileOnly(commonDependency("com.google.guava:guava"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|