Kotlin 1.4.0 (#11)

Co-authored-by: Salomon BRYS <salomon@kodein.net>
This commit is contained in:
Salomon BRYS
2020-08-18 10:52:42 +02:00
committed by GitHub
parent 7a33c81c01
commit d702925e40
9 changed files with 32 additions and 48 deletions

View File

@@ -8,7 +8,6 @@ kotlin {
val commonMain by sourceSets.getting {
dependencies {
implementation(kotlin("stdlib-common"))
implementation(rootProject)
}
}
@@ -23,7 +22,6 @@ kotlin {
kotlinOptions.jvmTarget = "1.8"
}
compilations["main"].dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation(project(":jni:jvm:all"))
}
compilations["test"].dependencies {
@@ -36,7 +34,6 @@ kotlin {
kotlinOptions.jvmTarget = "1.8"
}
sourceSets["androidMain"].dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation(project(":jni:android"))
}
sourceSets["androidTest"].dependencies {