Skip to content

Commit 945c5ae

Browse files
committed
update libs
1 parent a8364b8 commit 945c5ae

3 files changed

Lines changed: 23 additions & 15 deletions

File tree

build.gradle

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,24 @@
1+
apply plugin: 'com.github.ben-manes.versions'
2+
13
buildscript {
2-
ext.anko_version = '0.10.4'
3-
ext.dagger_version = '2.14.1'
4-
ext.kotlin_version = '1.2.41'
4+
ext.anko_version = '0.10.5'
5+
ext.dagger_version = '2.16'
6+
ext.kotlin_version = '1.2.50'
57
ext.web3j_version = '3.3.1'
6-
ext.mockito_version = '2.12.0'
7-
ext.kotlin_unsigned_version = 'v2.1'
8-
ext.kotlinx_coroutines_version = '0.22.5'
9-
ext.kluent_version = '1.36'
10-
ext.jackson_version = '2.9.5'
11-
ext.guava_version = '25.0-jre'
8+
ext.mockito_inline_version = '2.19.0'
9+
ext.kotlin_unsigned_version = 'v3.1.2'
10+
ext.kotlinx_coroutines_version = '0.23.3'
11+
ext.kluent_version = '1.38'
12+
ext.jackson_version = '2.9.6'
13+
ext.guava_version = '25.1-jre'
1214
ext.rxjava_version = '1.3.8'
13-
ext.guava_android_version = '25.0-android'
15+
ext.guava_android_version = '25.1-android'
1416
ext.junit_version = '4.12'
1517
ext.android_support_version = '27.1.1'
1618
ext.web3j_android_version = '3.3.1-android'
17-
ext.constraint_layout_version = '1.1.0'
19+
ext.constraint_layout_version = '1.1.2'
1820
ext.threetenabp_version = '1.1.0'
21+
ext.assertj_version = '3.10.0'
1922

2023
repositories {
2124
google()
@@ -24,9 +27,10 @@ buildscript {
2427
}
2528

2629
dependencies {
27-
classpath 'com.android.tools.build:gradle:3.1.2'
30+
classpath 'com.android.tools.build:gradle:3.1.3'
2831
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
29-
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
32+
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
33+
classpath 'com.github.ben-manes:gradle-versions-plugin:0.19.0'
3034
}
3135
}
3236

etherspace-android/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,14 @@ dependencies {
4141
// kotlin-stdlib
4242
api "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
4343

44+
// kotlinx-coroutines
45+
api "org.jetbrains.kotlinx:kotlinx-coroutines-android:$kotlinx_coroutines_version"
46+
4447
// etherspace
4548
api(project(':etherspace-java')) {
4649
exclude group: 'com.google.guava'
4750
exclude group: 'org.jetbrains.kotlin'
51+
exclude group: 'org.jetbrains.kotlinx'
4852
exclude group: 'org.web3j'
4953
}
5054

etherspace-java/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'maven'
33

44
dependencies {
55
// assertj
6-
testCompile group: 'org.assertj', name: 'assertj-core', version: '3.9.1'
6+
testCompile group: 'org.assertj', name: 'assertj-core', version: "$assertj_version"
77

88
// https://mvnrepository.com/artifact/com.google.guava/guava
99
compile group: 'com.google.guava', name: 'guava', version: "$guava_version"
@@ -28,7 +28,7 @@ dependencies {
2828
compile "com.github.kotlin-graphics:kotlin-unsigned:$kotlin_unsigned_version"
2929

3030
// https://mvnrepository.com/artifact/org.mockito/mockito-inline
31-
testCompile group: 'org.mockito', name: 'mockito-inline', version: "$mockito_version"
31+
testCompile group: 'org.mockito', name: 'mockito-inline', version: "$mockito_inline_version"
3232

3333
// https://mvnrepository.com/artifact/io.reactivex/rxjava
3434
compile group: 'io.reactivex', name: 'rxjava', version: "$rxjava_version"

0 commit comments

Comments
 (0)