d15c7861b2
This is needed to provide ability for declaring new implementations of test generators, based on existing infrastructure, which won't add dependency on :compiler:tests-common Also this commit removes implicit dependency on :compiler:tests-common from :compiler:tests-common-new
22 lines
431 B
Kotlin
22 lines
431 B
Kotlin
|
|
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
testCompile(intellijDep()) { includeJars("util") }
|
|
testCompile(project(":core:util.runtime"))
|
|
testApi(projectTests(":compiler:test-infrastructure-utils"))
|
|
testCompile(kotlinStdlib())
|
|
testCompile(commonDep("junit:junit"))
|
|
testCompile(project(":generators"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { }
|
|
"test" { projectDefault() }
|
|
}
|
|
|
|
testsJar {}
|