Files
kotlin-fork/generators/test-generator/build.gradle.kts
T
Dmitriy Novozhilov d15c7861b2 [TEST] Invert dependency between :test-generator and :tests-common modules
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
2020-12-16 19:52:29 +03:00

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 {}