Files
kotlin-fork/compiler/backend-common/build.gradle.kts
T
2020-02-05 22:45:12 +01:00

20 lines
340 B
Kotlin

plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
compile(project(":core:descriptors"))
compile(project(":compiler:util"))
compile(project(":compiler:frontend"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
}
sourceSets {
"main" {
projectDefault()
}
"test" {}
}