f4912ed433
* remove test roots in modules which have no tests * 1.8 is already the default JVM target in the project * replace compilation dependency on kotlin-reflect with runtime
17 lines
432 B
Kotlin
17 lines
432 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(":compiler:cli"))
|
|
compile(project(":compiler:ir.serialization.js"))
|
|
runtime(project(":kotlin-reflect"))
|
|
compile(intellijDep()) { includeJars("picocontainer", "trove4j", "guava", "jdom", rootProject = rootProject) }
|
|
compile(intellijCoreDep()) { includeJars("intellij-core") }
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
}
|