Fix setting production-on-test flags in MPP projects

#KT-29854 Fixed
This commit is contained in:
Andrey Uskov
2019-04-11 16:09:44 +03:00
parent 1a0b7902c2
commit 364274ef90
12 changed files with 200 additions and 45 deletions
@@ -0,0 +1,16 @@
subprojects {
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.21"
}
}
repositories {
mavenLocal()
mavenCentral()
}
}
@@ -0,0 +1,6 @@
apply plugin: 'kotlin'
dependencies {
testCompile project(':mppModule')
}
@@ -0,0 +1,7 @@
apply plugin: 'kotlin-multiplatform'
kotlin {
jvm()
}
println("mppModule")
@@ -0,0 +1,2 @@
include 'javaModule'
include 'mppModule'