Files
kotlin-fork/generators/test-generator/build.gradle.kts
T
Ilya Gorbunov 7ec04a1bf9 generators: extract OperationsMap generator to a separate source set
Refactor generators so that OperationsMapGenerator is in its own
source set with minimal dependencies.
2020-01-22 06:16:56 +03:00

22 lines
422 B
Kotlin

plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
testCompile(intellijDep()) { includeJars("util") }
testCompile(project(":core:util.runtime"))
testCompile(projectTests(":compiler:tests-common"))
testCompile(kotlinStdlib())
testCompile(commonDep("junit:junit"))
testCompile(project(":generators"))
}
sourceSets {
"main" { }
"test" { projectDefault() }
}
testsJar {}