Fix JVM test running in MPP projects (KT-30814)

This commit is contained in:
Yan Zhulanow
2019-05-30 19:57:16 +09:00
parent 6d3a7102d5
commit bc6f01805e
7 changed files with 81 additions and 10 deletions
@@ -0,0 +1,26 @@
buildscript {
repositories {
mavenCentral()
maven { url 'https://dl.bintray.com/kotlin/kotlin-dev' }
}
dependencies {
apply from: "include.gradle"
def kotlinVersion = gradleKotlinPluginVersion('1.3.20')
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
}
}
apply plugin: 'kotlin-multiplatform'
repositories {
mavenCentral()
maven { url 'https://dl.bintray.com/kotlin/kotlin-dev' }
}
kotlin {
targets {
fromPreset(presets.jvm, 'jvm')
}
}
@@ -0,0 +1 @@
include ':common', ':jvm', ':js'