Skip to content

Commit 7f04164

Browse files
authored
Upgrade to Kotlin 1.4 (#917)
1 parent 7d751e8 commit 7f04164

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed

buildSrc/build.gradle.kts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,13 @@ plugins {
77
repositories {
88
jcenter()
99
gradlePluginPortal()
10-
maven ("https://dl.bintray.com/kotlin/kotlin-eap")
11-
maven ("https://kotlin.bintray.com/kotlinx")
1210
}
1311

1412
dependencies {
15-
api(kotlin("gradle-plugin", version = "1.4.0-rc"))
13+
api(kotlin("gradle-plugin", version = "1.4.0"))
1614
api("org.jetbrains.dokka:dokka-gradle-plugin:1.4.0-rc")
1715
api("com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4")
18-
api("gradle.plugin.org.jetbrains.intellij.plugins:gradle-intellij-plugin:0.4.10")
16+
api("gradle.plugin.org.jetbrains.intellij.plugins:gradle-intellij-plugin:0.4.21")
1917
api("com.github.jengelman.gradle.plugins:shadow:4.0.2")
20-
implementation(kotlin("reflect", version = "1.4.0-rc"))
18+
implementation(kotlin("reflect", version = "1.4.0"))
2119
}

buildSrc/src/main/kotlin/Dependencies.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ object Dependencies {
1616
val mockitoCore = "org.mockito:mockito-core:2.23.4"
1717
val mockitoInline = "org.mockito:mockito-inline:2.23.4"
1818

19-
val kotlinCoroutinesCore = "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.8-1.4.0-rc"
19+
val kotlinCoroutinesCore = "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9"
2020

2121
val autoService = "com.google.auto.service:auto-service:1.0-rc4"
2222
}
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
repositories {
22
jcenter()
3-
maven ("https://dl.bintray.com/kotlin/kotlin-eap")
4-
maven ("https://kotlin.bintray.com/kotlinx")
53
}
64

75
dependencies {
8-
implementation(kotlin("gradle-plugin", version = "1.4.0-rc"))
9-
implementation(kotlin("reflect", version = "1.4.0-rc"))
6+
implementation(kotlin("gradle-plugin", version = "1.4.0"))
7+
implementation(kotlin("reflect", version = "1.4.0"))
108
}

0 commit comments

Comments
 (0)