Files
kotlin-fork/generators/test-generator/build.gradle.kts
T
2019-06-13 21:03:55 +03:00

21 lines
382 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"))
}
sourceSets {
"main" { }
"test" { projectDefault() }
}
testsJar {}