ab146bd6d4
for migration to Gradle 7+ #KTI-559
18 lines
300 B
Kotlin
18 lines
300 B
Kotlin
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":compiler:util"))
|
|
api(project(":js:js.ast"))
|
|
api(project(":js:js.translator"))
|
|
api(intellijCoreDep()) { includeJars("intellij-core") }
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|