Files
kotlin-fork/compiler/frontend.common/build.gradle.kts
T
2021-12-16 21:48:23 +03:00

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" {}
}