7ec04a1bf9
Refactor generators so that OperationsMapGenerator is in its own source set with minimal dependencies.
22 lines
422 B
Kotlin
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 {}
|