Fix setting production-on-test flags in MPP projects
#KT-29854 Fixed
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
subprojects {
|
||||
buildscript {
|
||||
repositories {
|
||||
mavenLocal()
|
||||
mavenCentral()
|
||||
}
|
||||
dependencies {
|
||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.21"
|
||||
}
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenLocal()
|
||||
mavenCentral()
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
apply plugin: 'kotlin'
|
||||
|
||||
|
||||
dependencies {
|
||||
testCompile project(':mppModule')
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
apply plugin: 'kotlin-multiplatform'
|
||||
|
||||
kotlin {
|
||||
jvm()
|
||||
|
||||
}
|
||||
println("mppModule")
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
include 'javaModule'
|
||||
include 'mppModule'
|
||||
Reference in New Issue
Block a user