Files
kotlin-fork/generators/test-generator/build.gradle.kts
T
2018-03-02 03:15:17 +03:00

21 lines
419 B
Kotlin

apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
dependencies {
compile(intellijDep()) { includeJars("util") }
testCompile(project(":core:util.runtime"))
testCompile(projectTests(":compiler:tests-common"))
testCompile(projectDist(":kotlin-stdlib"))
testCompile(commonDep("junit:junit"))
}
sourceSets {
"main" { }
"test" { projectDefault() }
}
testsJar {}