Files
kotlin-fork/generators/test-generator/build.gradle.kts
T
Mikhael Bogdanov a122cba862 Switch Kotlin project to jvm-target 1.8
#KT-29405
2019-01-31 07:43:05 +01:00

21 lines
378 B
Kotlin

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