blob: 4b89e017aff405671a2d4fbfce070af98c6b231d [file] [log] [blame] [edit]
plugins {
kotlin("jvm")
id("jps-compatible")
}
jvmTarget = "1.6"
dependencies {
compile(kotlinStdlib())
testCompile(project(":kotlin-test:kotlin-test-jvm"))
}
sourceSets {
"main" { }
"test" { projectDefault() }
}
testsJar {}