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.
23 lines
554 B
Kotlin
23 lines
554 B
Kotlin
|
|
apply { plugin("kotlin") }
|
|
|
|
dependencies {
|
|
compile(project(":compiler:frontend"))
|
|
compile(project(":compiler:frontend.script"))
|
|
compile(projectTests(":compiler:tests-common"))
|
|
compile(project(":idea"))
|
|
compile(project(":idea:idea-core"))
|
|
compile(project(":idea:idea-jps-common"))
|
|
compile(project(":kotlin-test:kotlin-test-jvm"))
|
|
compileOnly(project(":kotlin-reflect-api"))
|
|
compile(commonDep("junit:junit"))
|
|
compile(ideaSdkDeps("openapi", "idea"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|
|
|
|
|