blob: e7c115a9d9ec64cb83e77de00e3a84250a55d177 [file] [log] [blame]
apply { plugin("kotlin") }
apply { plugin("jps-compatible") }
jvmTarget = "1.6"
javaHome = rootProject.extra["JDK_16"] as String
dependencies {
compile(project(":core:metadata"))
}
sourceSets {
"main" { projectDefault() }
"test" {}
}
tasks.withType<JavaCompile> {
sourceCompatibility = "1.6"
targetCompatibility = "1.6"
}