Add modules metadata and metadata.jvm

This commit is contained in:
Alexander Udalov
2018-02-15 19:47:27 +01:00
parent 54d6710923
commit 368af867b8
9 changed files with 124 additions and 8 deletions
+18
View File
@@ -0,0 +1,18 @@
apply { plugin("kotlin") }
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"
}