b3bc99a44a
Refactor build scripts to use implementation dependencies instead of api for finer grained recompilations.
24 lines
555 B
Kotlin
24 lines
555 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":kotlin-util-io"))
|
|
api(project(":compiler:util"))
|
|
api(project(":compiler:frontend"))
|
|
api(project(":core:compiler.common.js"))
|
|
implementation(project(":core:compiler.common.web"))
|
|
api(project(":js:js.ast"))
|
|
api(project(":js:js.parser"))
|
|
api(project(":js:js.serializer"))
|
|
api(project(":js:js.config"))
|
|
compileOnly(intellijCore())
|
|
compileOnly(libs.guava)
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|