8a82c1618c
When plugins DSL is used, there is no need to manually generate typesafe accessors for extensions and conventions (by running `./gradlew kotlinDslAccessorsSnapshot`).
21 lines
376 B
Kotlin
21 lines
376 B
Kotlin
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
val depenencyProjects = arrayOf(
|
|
":generators", ":compiler", ":js:js.tests", ":compiler:tests-java8"
|
|
)
|
|
|
|
dependencies {
|
|
depenencyProjects.forEach {
|
|
testCompile(projectTests(it))
|
|
jpsTest(project(it, configuration = "jpsTest"))
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { }
|
|
"test" { projectDefault() }
|
|
} |