Skip to content

Commit 91db5c2

Browse files
committed
fix gradle for kotlin version
1 parent 1bcdb79 commit 91db5c2

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip

kotlin/build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
ext.kotlin_version = '1.2.21'
2+
ext.kotlin_version = '1.3.31'
33

44
repositories {
55
mavenCentral()
@@ -13,8 +13,9 @@ buildscript {
1313
apply plugin: 'kotlin'
1414

1515
dependencies {
16-
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
17-
16+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
17+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.0-M1'
18+
1819
testCompile "org.jetbrains.kotlin:kotlin-test"
1920
testCompile "org.jetbrains.kotlin:kotlin-test-junit"
2021
}

0 commit comments

Comments
 (0)