4dcd0d1cb6
Also move deprecated TargetPlatform there. This allows to get rid of the dependency cli.common -> frontend, and even on frontend.common.
16 lines
304 B
Kotlin
16 lines
304 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":compiler:config"))
|
|
api(project(":core:descriptors.jvm"))
|
|
compileOnly(intellijCoreDep()) { includeJars("asm-all", rootProject = rootProject) }
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { }
|
|
}
|