Files
kotlin-fork/plugins/pill/generate-all-tests/build.gradle.kts
T
2020-12-16 19:52:23 +03:00

29 lines
549 B
Kotlin

plugins {
kotlin("jvm")
id("jps-compatible")
}
val depenencyProjects = arrayOf(
":generators",
":compiler",
":compiler:tests-common-new",
":js:js.tests",
":compiler:tests-java8",
":core:descriptors.runtime"
)
dependencies {
depenencyProjects.forEach {
testCompile(projectTests(it))
jpsTest(project(it, configuration = "jpsTest"))
}
testRuntimeOnly(files("${rootProject.projectDir}/dist/kotlinc/lib/kotlin-reflect.jar"))
}
sourceSets {
"main" { }
"test" { projectDefault() }
}