a18770fbbb
Use default configuration dependencies instead of projectDist ones.
23 lines
466 B
Kotlin
23 lines
466 B
Kotlin
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(":kotlin-stdlib"))
|
|
compile(project(":core:util.runtime"))
|
|
compile(project(":compiler:backend"))
|
|
compile(project(":compiler:frontend.java"))
|
|
compile(project(":idea:ide-common"))
|
|
compile(project(":idea:idea-core"))
|
|
compile(project(":plugins:uast-kotlin"))
|
|
compileOnly(intellijDep())
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|
|
|