Skip to content

Commit f0a55f3

Browse files
committed
Rollback to production Kotlin version 1.2.10
1 parent 1bb8c1c commit f0a55f3

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ buildscript {
1414
repositories {
1515
jcenter()
1616
maven { url "http://kotlin.bintray.com/kotlinx" }
17-
maven { url "http://kotlin.bintray.com/kotlin-eap" }
1817
maven { url "http://kotlin.bintray.com/kotlin-dev" }
1918
maven { url "https://plugins.gradle.org/m2/" }
2019
}
@@ -75,7 +74,6 @@ configure(subprojects.findAll { !sourceless.contains(it.name) }) {
7574
repositories {
7675
jcenter()
7776
maven { url "http://kotlin.bintray.com/kotlinx" }
78-
maven { url "http://kotlin.bintray.com/kotlin-eap" }
7977
maven { url "https://dl.bintray.com/devexperts/Maven/" }
8078
}
8179

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version = 0.21-SNAPSHOT
22

3-
kotlin_version = 1.2.20-eap-33
3+
kotlin_version = 1.2.10
44
junit_version = 4.12
55
atomicFU_version = 0.9.2
66
html_version = 0.6.8

js/example-frontend-js/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,9 @@ task bundle(type: NpmTask, dependsOn: [npmInstall, runDceKotlinJs]) {
4040
task start(type: NpmTask, dependsOn: bundle) {
4141
args = ["run", "start"]
4242
}
43+
44+
// we have not tests but kotlin-dce-js still tries to work with them and crashed.
45+
// todo: Remove when KT-22028 is fixed
46+
afterEvaluate {
47+
tasks.unpackDependenciesTestKotlinJs.enabled = false
48+
}

0 commit comments

Comments
 (0)