f7a9065b75
#KTI-82
18 lines
346 B
Kotlin
18 lines
346 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":compiler:fir:providers"))
|
|
implementation(project(":core:util.runtime"))
|
|
|
|
compileOnly(project(":kotlin-reflect-api"))
|
|
compileOnly(commonDependency("com.google.guava:guava"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { none() }
|
|
}
|