Skip to content

Commit d99d4bb

Browse files
committed
Versions update
1 parent 31b1298 commit d99d4bb

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

build.gradle

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.jetbrains.kotlin.jvm' version '1.3.60'
2+
id 'org.jetbrains.kotlin.jvm' version '1.4.20'
33
}
44

55
group 'intro-coroutines'
@@ -12,26 +12,25 @@ repositories {
1212
dependencies {
1313
implementation "org.jetbrains.kotlin:kotlin-stdlib"
1414
implementation "org.jetbrains.kotlin:kotlin-reflect"
15-
16-
def coroutines_version = '1.3.3'
15+
16+
def coroutines_version = '1.4.2'
1717
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version"
1818
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-swing:$coroutines_version"
1919
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:$coroutines_version"
2020
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-slf4j:$coroutines_version"
2121
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-debug:$coroutines_version"
2222

23-
implementation "com.squareup.retrofit2:retrofit:2.4.0"
24-
implementation "com.squareup.retrofit2:converter-jackson:2.4.0"
2523
implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.9.7"
2624
implementation 'ch.qos.logback:logback-classic:1.0.13'
2725

28-
def retrofit_version = '2.6.3'
26+
def retrofit_version = '2.9.0'
2927
implementation "com.squareup.retrofit2:retrofit:$retrofit_version"
28+
implementation "com.squareup.retrofit2:converter-jackson:$retrofit_version"
3029
implementation "com.squareup.retrofit2:converter-gson:$retrofit_version"
3130
implementation "com.squareup.retrofit2:retrofit-mock:$retrofit_version"
3231

33-
implementation 'io.reactivex.rxjava2:rxjava:2.2.8'
34-
implementation 'io.reactivex.rxjava2:rxkotlin:2.3.0'
32+
implementation 'io.reactivex.rxjava2:rxjava:2.2.20'
33+
implementation 'io.reactivex.rxjava2:rxkotlin:2.4.0'
3534
implementation "com.squareup.retrofit2:adapter-rxjava2:$retrofit_version"
3635

3736
testImplementation "junit:junit:4.12"
@@ -48,7 +47,7 @@ compileTestKotlin {
4847

4948
compileTestKotlin {
5049
kotlinOptions {
51-
freeCompilerArgs += "-Xuse-experimental=kotlin.Experimental"
50+
freeCompilerArgs += "-Xopt-in=kotlin.RequiresOptIn"
5251
}
5352
}
5453

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-4.10.3-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip

0 commit comments

Comments
 (0)