aca74cef0e
See the previous commit for information on the kotlin-reflect vs kotlin-reflect-api distinction. Add kotlin-reflect as an explicit runtime dependency of most of the test configurations because even though they all depend on tests-common, the runtime dependency on kotlin-reflect is not exported from tests-common to other modules because the projectTests dependency is not transitive.
31 lines
1.1 KiB
Kotlin
31 lines
1.1 KiB
Kotlin
apply { plugin("kotlin") }
|
|
|
|
dependencies {
|
|
compile(projectDist(":kotlin-stdlib"))
|
|
compileOnly(project(":kotlin-reflect-api"))
|
|
compile(project(":core:descriptors"))
|
|
compile(project(":core:descriptors.jvm"))
|
|
compile(project(":compiler:frontend"))
|
|
compile(project(":compiler:frontend.java"))
|
|
compile(project(":compiler:frontend.script"))
|
|
compile(project(":compiler:light-classes"))
|
|
compile(project(":compiler:util"))
|
|
compile(project(":j2k"))
|
|
compile(project(":idea:ide-common"))
|
|
compile(project(":idea:idea-jps-common"))
|
|
compile(project(":plugins:android-extensions-compiler"))
|
|
compile(ideaSdkCoreDeps("intellij-core", "util"))
|
|
compile(ideaSdkDeps("openapi", "idea"))
|
|
compile(ideaPluginDeps("gradle-tooling-api", "gradle", plugin = "gradle"))
|
|
compile(preloadedDeps("kotlinx-coroutines-core", "kotlinx-coroutines-jdk8"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" {
|
|
projectDefault()
|
|
java.srcDir("../idea-analysis/src")
|
|
resources.srcDir("../idea-analysis/src").apply { include("**/*.properties") }
|
|
}
|
|
"test" {}
|
|
}
|