Skip to content

Commit 5569c4a

Browse files
author
Martynas Petuška
committed
Kotlin 1.4.0-rc
1 parent 5f9ed10 commit 5569c4a

File tree

5 files changed

+4
-10
lines changed

5 files changed

+4
-10
lines changed

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ plugins {
2222

2323
allprojects {
2424
repositories {
25+
maven { url "https://kotlin.bintray.com/kotlinx" }
2526
google()
2627
jcenter()
2728
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }

buildSrc/src/main/kotlin/Libs.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,10 +181,10 @@ object Libs {
181181
const val spek_runner_junit5: String = "org.spekframework.spek2:spek-runner-junit5:" +
182182
Versions.spek
183183

184-
const val kotlin_coroutines: String = "org.jetbrains.kotlinx:kotlinx-coroutines-core-common:" +
184+
const val kotlin_coroutines: String = "org.jetbrains.kotlinx:kotlinx-coroutines-core:" +
185185
Versions.coroutines
186186

187-
const val kotlin_coroutines_jvm: String = "org.jetbrains.kotlinx:kotlinx-coroutines-core:" +
187+
const val kotlin_coroutines_jvm: String = "org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:" +
188188
Versions.coroutines
189189

190190
const val kotlin_coroutines_test: String = "org.jetbrains.kotlinx:kotlinx-coroutines-test:" +

examples/counter/common/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ apply plugin: 'kotlin-multiplatform'
77

88
kotlin {
99
jvm()
10-
js() {
10+
js {
1111
[compileKotlinJs, compileTestKotlinJs].each { configuration ->
1212
configuration.kotlinOptions {
1313
moduleKind = 'umd'

redux-kotlin-threadsafe/build.gradle

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ kotlin {
3434

3535
commonMain {
3636
dependencies {
37-
implementation kotlin("stdlib-common")
3837
api project(":redux-kotlin")
3938
}
4039
}
@@ -52,7 +51,6 @@ kotlin {
5251

5352
jvmMain {
5453
dependencies {
55-
implementation kotlin("stdlib")
5654
}
5755
}
5856
jvmTest {
@@ -72,7 +70,6 @@ kotlin {
7270
}
7371
jsMain {
7472
dependencies {
75-
implementation kotlin("stdlib-js")
7673
}
7774
compileKotlinJs {
7875
kotlinOptions.metaInfo = true

redux-kotlin/build.gradle

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ kotlin {
3232

3333
commonMain {
3434
dependencies {
35-
// api kotlin("stdlib-common")
3635
}
3736
}
3837
commonTest {
@@ -49,7 +48,6 @@ kotlin {
4948
jvmMain {
5049
kotlin.srcDir('src/jvmMain/kotlin')
5150
dependencies {
52-
// api kotlin("stdlib")
5351
}
5452
}
5553
jvmTest {
@@ -69,7 +67,6 @@ kotlin {
6967
jsMain {
7068
kotlin.srcDir('src/jsMain/kotlin')
7169
dependencies {
72-
api kotlin("stdlib-js")
7370
}
7471
compileKotlinJs {
7572
kotlinOptions.metaInfo = true
@@ -83,7 +80,6 @@ kotlin {
8380
jsTest {
8481
dependencies {
8582
implementation kotlin("test-js")
86-
implementation kotlin("stdlib-js")
8783
}
8884
}
8985
winMain {

0 commit comments

Comments
 (0)