Skip to content

Commit 18fa116

Browse files
committed
Kotlin 1.2.51
1 parent 0cf99bc commit 18fa116

File tree

6 files changed

+7
-18
lines changed

6 files changed

+7
-18
lines changed

build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,12 @@ allprojects {
4141
if (useKotlinSnapshot) {
4242
kotlin_version = '1.2-SNAPSHOT'
4343
}
44+
45+
repositories {
46+
jcenter()
47+
maven { url "https://kotlin.bintray.com/kotlin-dev" }
48+
maven { url "https://kotlin.bintray.com/kotlinx" }
49+
}
4450
}
4551

4652

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version = 0.23.3-SNAPSHOT
22
group = org.jetbrains.kotlinx
33

4-
kotlin_version = 1.2.50
4+
kotlin_version = 1.2.51
55
kotlin_native_version = 0.7-dev-1436
66
junit_version = 4.12
77
atomicFU_version = 0.10.3

gradle/compile-common.gradle

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,3 @@ dependencies {
1010
testCompile "org.jetbrains.kotlin:kotlin-test-common:$kotlin_version"
1111
testCompile "org.jetbrains.kotlin:kotlin-test-annotations-common:$kotlin_version"
1212
}
13-
14-
repositories {
15-
jcenter()
16-
maven { url "https://kotlin.bintray.com/kotlinx" }
17-
}

gradle/compile-js.gradle

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@ dependencies {
1010
testCompile "org.jetbrains.kotlin:kotlin-test-js:$kotlin_version"
1111
}
1212

13-
repositories {
14-
jcenter()
15-
maven { url "https://kotlin.bintray.com/kotlinx" }
16-
}
17-
1813
tasks.withType(compileKotlin2Js.getClass()) {
1914
kotlinOptions {
2015
moduleKind = "umd"

gradle/compile-jvm.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ dependencies {
1818
}
1919

2020
repositories {
21-
jcenter()
22-
maven { url "https://kotlin.bintray.com/kotlinx" }
2321
maven { url "https://dl.bintray.com/devexperts/Maven/" }
2422
}
2523

gradle/compile-native.gradle

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
apply plugin: 'konan'
22

3-
repositories {
4-
jcenter()
5-
maven { url "https://kotlin.bintray.com/kotlinx" }
6-
}
7-
83
def libraryName = project.name
94
def testProgramName = libraryName + "-test"
105

0 commit comments

Comments
 (0)