更新依赖

This commit is contained in:
czp3009 2018-05-11 18:29:34 +08:00
parent c8c4bd3ec4
commit e411a1b032
2 changed files with 7 additions and 6 deletions

1
.gitignore vendored
View File

@ -6,3 +6,4 @@ out
build
src/test/resources/config.json
.gradle
gradlew.bat

View File

@ -1,5 +1,5 @@
group = 'com.hiczp'
version = '0.0.11'
version = '0.0.12'
description = 'Bilibili android client API library written in Java'
apply plugin: 'idea'
@ -15,19 +15,19 @@ repositories {
dependencies {
// https://mvnrepository.com/artifact/com.squareup.retrofit2/retrofit
compile group: 'com.squareup.retrofit2', name: 'retrofit', version: '2.3.0'
compile group: 'com.squareup.retrofit2', name: 'retrofit', version: '2.4.0'
// https://mvnrepository.com/artifact/com.squareup.retrofit2/converter-gson
compile group: 'com.squareup.retrofit2', name: 'converter-gson', version: '2.3.0'
compile group: 'com.squareup.retrofit2', name: 'converter-gson', version: '2.4.0'
// https://mvnrepository.com/artifact/com.google.code.gson/gson
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.2'
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.4'
// https://mvnrepository.com/artifact/com.squareup.okhttp3/logging-interceptor
compile group: 'com.squareup.okhttp3', name: 'logging-interceptor', version: '3.10.0'
// https://mvnrepository.com/artifact/org.slf4j/slf4j-api
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
// https://mvnrepository.com/artifact/io.netty/netty-all
compile group: 'io.netty', name: 'netty-all', version: '4.1.22.Final'
compile group: 'io.netty', name: 'netty-all', version: '4.1.24.Final'
// https://mvnrepository.com/artifact/com.google.guava/guava
compile group: 'com.google.guava', name: 'guava', version: '24.0-jre'
compile group: 'com.google.guava', name: 'guava', version: '25.0-jre'
}
dependencies {