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.
39 lines
1.4 KiB
Kotlin
39 lines
1.4 KiB
Kotlin
|
|
apply { plugin("kotlin") }
|
|
|
|
dependencies {
|
|
testCompile(project(":core:descriptors"))
|
|
testCompile(project(":core:descriptors.jvm"))
|
|
testCompile(project(":core:deserialization"))
|
|
testCompile(project(":compiler:util"))
|
|
testCompile(project(":compiler:backend"))
|
|
testCompile(project(":compiler:ir.ir2cfg"))
|
|
testCompile(project(":compiler:frontend"))
|
|
testCompile(project(":compiler:frontend.java"))
|
|
testCompile(project(":compiler:util"))
|
|
testCompile(project(":compiler:cli-common"))
|
|
testCompile(project(":compiler:cli"))
|
|
testCompile(project(":compiler:light-classes"))
|
|
testCompile(project(":compiler:serialization"))
|
|
testCompile(project(":kotlin-preloader"))
|
|
testCompile(project(":compiler:daemon-common"))
|
|
testCompile(project(":js:js.serializer"))
|
|
testCompile(project(":js:js.frontend"))
|
|
testCompile(project(":js:js.translator"))
|
|
testCompileOnly(project(":plugins:android-extensions-compiler"))
|
|
testCompile(project(":kotlin-test:kotlin-test-jvm"))
|
|
testCompile(projectTests(":compiler:tests-common-jvm6"))
|
|
testCompileOnly(project(":kotlin-reflect-api"))
|
|
testCompile(commonDep("junit:junit"))
|
|
testCompile(ideaSdkCoreDeps("intellij-core"))
|
|
testCompile(ideaSdkDeps("openapi", "idea", "idea_rt"))
|
|
testCompile(preloadedDeps("dx", subdir = "android-5.0/lib"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
testsJar {}
|