| plugins { | |
| kotlin("jvm") | |
| id("jps-compatible") | |
| } | |
| jvmTarget = "1.6" | |
| dependencies { | |
| compile(kotlinStdlib()) | |
| testCompile(project(":kotlin-test:kotlin-test-jvm")) | |
| } | |
| sourceSets { | |
| "main" { } | |
| "test" { projectDefault() } | |
| } | |
| testsJar {} | |
| tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach { | |
| kotlinOptions { | |
| freeCompilerArgs += "-Xsuppress-deprecated-jvm-target-warning" | |
| } | |
| } |