Build common standard library headers and kotlin-test (common and jvm) as multiplatform projects.

This commit is contained in:
Ilya Gorbunov
2017-03-06 19:47:51 +03:00
parent 780e12f04a
commit 08fa304b6f
11 changed files with 272 additions and 121 deletions
+1 -16
View File
@@ -2,25 +2,10 @@
description = 'Kotlin Test JUnit'
dependencies {
compile project(':kotlin-runtime')
compile project(':kotlin-test-parent:kotlin-test')
compile project(':kotlin-test:kotlin-test-jvm')
compile('junit:junit:4.12')
}
sourceSets {
main {
kotlin {
srcDir 'src/main/kotlin'
srcDir 'src/main/kotlin.jvm'
}
}
test {
kotlin {
srcDir 'src/test/kotlin'
srcDir 'src/test/kotlin.jvm'
}
}
}
jar {
manifest {