Update dependencies

This commit is contained in:
Emux 2017-05-30 13:35:48 +03:00
parent c14e93e25d
commit 45383397bc
11 changed files with 13 additions and 12 deletions

View File

@ -16,6 +16,7 @@ allprojects {
ext.androidBuildVersionTools = "25.0.3"
ext.gdxVersion = "1.9.6"
ext.gwtVersion = "2.8.0"
ext.slf4jVersion = "1.7.25"
if (JavaVersion.current().isJava8Compatible()) {
tasks.withType(Javadoc) {

View File

@ -10,7 +10,7 @@ Current version is [![Maven Central](https://img.shields.io/maven-central/v/org.
```groovy
compile 'org.mapsforge:vtm:[CURRENT-VERSION]'
compile 'org.mapsforge:vtm-themes:[CURRENT-VERSION]'
compile 'org.slf4j:slf4j-api:1.7.21'
compile 'org.slf4j:slf4j-api:1.7.25'
```
### Android

View File

@ -5,7 +5,7 @@ dependencies {
compile project(':vtm-themes')
compile project(':vtm-extras')
compile 'com.noveogroup.android:android-logger:1.3.6'
compile 'com.squareup.okhttp3:okhttp:3.6.0'
compile 'com.squareup.okhttp3:okhttp:3.8.0'
}
android {

View File

@ -3,7 +3,7 @@ apply plugin: 'maven'
dependencies {
compile project(':vtm')
compile 'com.squareup.okhttp3:okhttp:3.6.0'
compile 'com.squareup.okhttp3:okhttp:3.8.0'
}
sourceSets {

View File

@ -33,7 +33,7 @@ dependencies {
compile "com.badlogicgames.gdx:gdx-backend-robovm:$gdxVersion"
compile "com.mobidevelop.robovm:robovm-rt:$roboVMVersion"
compile "com.mobidevelop.robovm:robovm-cocoatouch:$roboVMVersion"
compile 'org.slf4j:slf4j-simple:1.7.21'
compile "org.slf4j:slf4j-simple:$slf4jVersion"
}
task copyVtmResources(type: Copy) {

View File

@ -6,7 +6,7 @@ dependencies {
compile project(':vtm-http')
compile project(':vtm-jeo')
compile project(':vtm-jts')
compile 'org.slf4j:slf4j-simple:1.7.21'
compile "org.slf4j:slf4j-simple:$slf4jVersion"
}
sourceSets {

View File

@ -2,12 +2,12 @@ apply plugin: 'java'
dependencies {
compile project(':vtm-http')
compile 'com.squareup.okhttp3:okhttp:3.6.0'
testCompile 'com.squareup.okhttp3:mockwebserver:3.6.0'
compile 'com.squareup.okhttp3:okhttp:3.8.0'
testCompile 'com.squareup.okhttp3:mockwebserver:3.8.0'
testCompile 'junit:junit:4.12'
testCompile 'org.easytesting:fest-assert-core:2.0M10'
testCompile 'org.mockito:mockito-all:1.10.19'
testCompile 'org.slf4j:slf4j-simple:1.7.21'
testCompile "org.slf4j:slf4j-simple:$slf4jVersion"
}
sourceSets {

View File

@ -21,7 +21,7 @@ dependencies {
providedCompile "com.badlogicgames.gdx:gdx:$gdxVersion:sources"
providedCompile "com.badlogicgames.gdx:gdx-backend-gwt:$gdxVersion:sources"
providedCompile "com.badlogicgames.gdx:gdx-backend-gwt:$gdxVersion"
providedCompile 'org.slf4j:slf4j-api:1.7.21'
providedCompile "org.slf4j:slf4j-api:$slf4jVersion"
providedCompile 'ru.finam:slf4j-gwt:1.7.7.1'
}

View File

@ -22,7 +22,7 @@ dependencies {
providedCompile "com.badlogicgames.gdx:gdx:$gdxVersion:sources"
providedCompile "com.badlogicgames.gdx:gdx-backend-gwt:$gdxVersion:sources"
providedCompile "com.badlogicgames.gdx:gdx-backend-gwt:$gdxVersion"
providedCompile 'org.slf4j:slf4j-api:1.7.21'
providedCompile "org.slf4j:slf4j-api:$slf4jVersion"
providedCompile 'org.timepedia.exporter:gwtexporter:2.5.1'
providedCompile 'ru.finam:slf4j-gwt:1.7.7.1'
}

View File

@ -21,7 +21,7 @@ dependencies {
compile "com.badlogicgames.gdx:gdx:$gdxVersion:sources"
compile "com.badlogicgames.gdx:gdx-backend-gwt:$gdxVersion:sources"
compile "com.badlogicgames.gdx:gdx-backend-gwt:$gdxVersion"
compile 'org.slf4j:slf4j-api:1.7.21'
compile "org.slf4j:slf4j-api:$slf4jVersion"
compile 'ru.finam:slf4j-gwt:1.7.7.1'
}

View File

@ -2,7 +2,7 @@ apply plugin: 'java'
apply plugin: 'maven'
dependencies {
compile 'org.slf4j:slf4j-api:1.7.21'
compile "org.slf4j:slf4j-api:$slf4jVersion"
compileOnly 'com.google.code.findbugs:jsr305:3.0.1'
}