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

16 lines
266 B
Kotlin

plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
api(project(":compiler:frontend"))
compileOnly(intellijCore())
compileOnly(commonDependency("com.google.guava:guava"))
}
sourceSets {
"main" { projectDefault() }
"test" {}
}