Skip to content
This repository has been archived by the owner on Aug 9, 2020. It is now read-only.

Commit

Permalink
bump libs version
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor Albertos committed Dec 28, 2017
1 parent bca9ef6 commit 2bd9ca0
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 22 deletions.
11 changes: 5 additions & 6 deletions android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
apply plugin: 'com.android.application'
apply plugin: 'android-apt'

buildscript {
repositories {
Expand All @@ -14,7 +13,7 @@ buildscript {

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
buildToolsVersion '26.0.2'

defaultConfig {
applicationId "victoralbertos.io.android"
Expand All @@ -37,13 +36,13 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(':runtime')
apt project(':compiler')
compile 'com.github.VictorAlbertos.Jolyglot:gson:0.0.3'
annotationProcessor project(':compiler')
compile 'com.github.VictorAlbertos.Jolyglot:gson:0.0.4'

testCompile 'junit:junit:4.12'

apt "com.google.dagger:dagger-compiler:2.7"
compile "com.google.dagger:dagger:2.7"
annotationProcessor "com.google.dagger:dagger-compiler:2.14.1"
compile "com.google.dagger:dagger:2.14.1"
provided "org.glassfish:javax.annotation:10.0-b28"
}

Expand Down
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
classpath 'com.android.tools.build:gradle:2.3.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand All @@ -15,6 +16,7 @@ allprojects {
repositories {
jcenter()
maven { url 'https://jitpack.io' }
google()
}
}

Expand Down
2 changes: 1 addition & 1 deletion compiler/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies {
compile project(':runtime')

compile 'com.google.auto.service:auto-service:1.0-rc2'
compile 'com.squareup:javapoet:1.8.0'
compile 'com.squareup:javapoet:1.9.0'

testCompile "junit:junit:4.12"
testCompile "com.google.testing.compile:compile-testing:0.10"
Expand Down
16 changes: 8 additions & 8 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ buildscript {

dependencies {
classpath "net.ltgt.gradle:gradle-apt-plugin:0.4"
classpath 'net.sf.proguard:proguard-gradle:4.11'
classpath 'net.sf.proguard:proguard-gradle:5.3.3'
}
}

Expand Down Expand Up @@ -57,15 +57,15 @@ artifacts {
}

dependencies {
apt "com.google.dagger:dagger-compiler:2.8"
compile "com.google.dagger:dagger:2.8"
apt "com.google.dagger:dagger-compiler:2.14.1"
compile "com.google.dagger:dagger:2.14.1"
compile "org.glassfish:javax.annotation:10.0-b28"

compile 'io.reactivex.rxjava2:rxjava:2.0.6'
compile 'com.github.VictorAlbertos.Jolyglot:api:0.0.3'
compile 'io.reactivex.rxjava2:rxjava:2.1.6'
compile 'com.github.VictorAlbertos.Jolyglot:api:0.0.4'

testCompile 'com.github.VictorAlbertos.Jolyglot:gson:0.0.3'
testCompile 'com.github.VictorAlbertos.Jolyglot:jackson:0.0.3'
testCompile 'com.github.VictorAlbertos.Jolyglot:moshi:0.0.3'
testCompile 'com.github.VictorAlbertos.Jolyglot:gson:0.0.4'
testCompile 'com.github.VictorAlbertos.Jolyglot:jackson:0.0.4'
testCompile 'com.github.VictorAlbertos.Jolyglot:moshi:0.0.4'
testCompile "junit:junit:4.12"
}
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Wed Sep 14 11:15:41 CEST 2016
#Thu Dec 28 19:41:23 CET 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
8 changes: 4 additions & 4 deletions runtime/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ artifacts {
}

dependencies {
compile 'com.github.VictorAlbertos.Jolyglot:api:0.0.3'
compile 'com.github.VictorAlbertos.Jolyglot:api:0.0.4'
compile project(':core')

testCompile 'com.github.VictorAlbertos.Jolyglot:gson:0.0.3'
testCompile 'com.github.VictorAlbertos.Jolyglot:jackson:0.0.3'
testCompile 'com.github.VictorAlbertos.Jolyglot:moshi:0.0.3'
testCompile 'com.github.VictorAlbertos.Jolyglot:gson:0.0.4'
testCompile 'com.github.VictorAlbertos.Jolyglot:jackson:0.0.4'
testCompile 'com.github.VictorAlbertos.Jolyglot:moshi:0.0.4'
testCompile 'junit:junit:4.12'
}

0 comments on commit 2bd9ca0

Please sign in to comment.