1
0
mirror of https://github.com/wulkanowy/wulkanowy.git synced 2024-11-23 16:16:10 -06:00

Update dependencies (#95)

This commit is contained in:
Mikołaj Pich 2018-05-03 12:29:10 +02:00 committed by Rafał Borcz
parent 4ef3334bf7
commit 89350e5793
2 changed files with 27 additions and 14 deletions

View File

@ -5,8 +5,8 @@ buildscript {
} }
dependencies { dependencies {
classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2' classpath "org.greenrobot:greendao-gradle-plugin:$greenDaoGradle"
classpath 'io.fabric.tools:gradle:1.25.1' classpath "io.fabric.tools:gradle:$fabricGradle"
} }
} }
@ -66,6 +66,10 @@ greendao {
generateTests = true generateTests = true
} }
configurations.all {
resolutionStrategy.force "com.android.support:support-annotations:$supportVersion"
}
dependencies { dependencies {
implementation project(':api') implementation project(':api')
implementation "com.android.support:support-v4:$supportVersion" implementation "com.android.support:support-v4:$supportVersion"

View File

@ -7,12 +7,18 @@ buildscript {
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:3.1.2' classpath 'com.android.tools.build:gradle:3.1.2'
classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.6.1" classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.6.2"
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3' classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1' classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
} }
} }
plugins {
// gradle dependencyUpdates -Drevision=release
id "com.github.ben-manes.versions" version "0.17.0"
}
project.ext.preDexLibs = !project.hasProperty("disablePreDex") project.ext.preDexLibs = !project.hasProperty("disablePreDex")
subprojects { subprojects {
project.plugins.whenPluginAdded { plugin -> project.plugins.whenPluginAdded { plugin ->
@ -28,28 +34,31 @@ ext {
GROUP_ID = "io.github.wulkanowy" GROUP_ID = "io.github.wulkanowy"
supportVersion = "26.1.0" supportVersion = "26.1.0"
flexibleAdapter = "5.0.2"
flexibleUi = "1.0.0-b2"
firebaseJob = "0.8.5" firebaseJob = "0.8.5"
apacheLang = "3.7" apacheLang = "3.7"
apacheCollections = "4.1" apacheCollections = "4.1"
flexibleAdapter = "5.0.2"
flexibleUi = "1.0.0-b2"
greenDao = "3.2.2" greenDao = "3.2.2"
greenDaoHelper = "v2.0.2" greenDaoHelper = "v2.0.2"
greenDaoGradle = "3.2.2"
butterknife = "8.8.1" butterknife = "8.8.1"
threeTenABP = "1.0.5" threeTenABP = "1.1.0"
dagger2 = "2.15" dagger2 = "2.15"
ahbottom = "2.1.0" ahbottom = "2.2.0"
jsoup = "1.10.3" jsoup = "1.11.3"
gson = "2.8.2" gson = "2.8.4"
debugDb = "1.0.3" debugDb = "1.0.3"
sqlcipher = "3.5.9" sqlcipher = "3.5.9"
junit = "4.12" junit = "4.12"
mockito = "2.16.0" mockito = "2.18.3"
testRunner = "1.0.1" testRunner = "1.0.2"
crashlyticsSdk = "2.9.1" fabricGradle = "1.25.3"
crashlyticsSdk = "2.9.2"
crashlyticsAnswers = "1.4.1" crashlyticsAnswers = "1.4.1"
} }