1
1
plugins {
2
- id ' org.jetbrains.kotlin.jvm' version ' 1.3.60 '
2
+ id ' org.jetbrains.kotlin.jvm' version ' 1.4.20 '
3
3
}
4
4
5
5
group ' intro-coroutines'
@@ -12,26 +12,25 @@ repositories {
12
12
dependencies {
13
13
implementation " org.jetbrains.kotlin:kotlin-stdlib"
14
14
implementation " org.jetbrains.kotlin:kotlin-reflect"
15
-
16
- def coroutines_version = ' 1.3.3 '
15
+
16
+ def coroutines_version = ' 1.4.2 '
17
17
implementation " org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version "
18
18
implementation " org.jetbrains.kotlinx:kotlinx-coroutines-swing:$coroutines_version "
19
19
implementation " org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:$coroutines_version "
20
20
implementation " org.jetbrains.kotlinx:kotlinx-coroutines-slf4j:$coroutines_version "
21
21
implementation " org.jetbrains.kotlinx:kotlinx-coroutines-debug:$coroutines_version "
22
22
23
- implementation " com.squareup.retrofit2:retrofit:2.4.0"
24
- implementation " com.squareup.retrofit2:converter-jackson:2.4.0"
25
23
implementation " com.fasterxml.jackson.module:jackson-module-kotlin:2.9.7"
26
24
implementation ' ch.qos.logback:logback-classic:1.0.13'
27
25
28
- def retrofit_version = ' 2.6.3 '
26
+ def retrofit_version = ' 2.9.0 '
29
27
implementation " com.squareup.retrofit2:retrofit:$retrofit_version "
28
+ implementation " com.squareup.retrofit2:converter-jackson:$retrofit_version "
30
29
implementation " com.squareup.retrofit2:converter-gson:$retrofit_version "
31
30
implementation " com.squareup.retrofit2:retrofit-mock:$retrofit_version "
32
31
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'
35
34
implementation " com.squareup.retrofit2:adapter-rxjava2:$retrofit_version "
36
35
37
36
testImplementation " junit:junit:4.12"
@@ -48,7 +47,7 @@ compileTestKotlin {
48
47
49
48
compileTestKotlin {
50
49
kotlinOptions {
51
- freeCompilerArgs + = " -Xuse-experimental =kotlin.Experimental "
50
+ freeCompilerArgs + = " -Xopt-in =kotlin.RequiresOptIn "
52
51
}
53
52
}
54
53
0 commit comments