Skip to content

Commit

Permalink
update retrolambda version, extract some library versions to main bui…
Browse files Browse the repository at this point in the history
…ld.gradle
  • Loading branch information
Yarikx committed Jan 12, 2017
1 parent b1e20e1 commit 833e6f2
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 8 deletions.
5 changes: 4 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ buildscript {
project.ext {
bintrayUser = project.hasProperty('BINTRAY_USER') ? project.property('BINTRAY_USER') : ""
bintrayKey = project.hasProperty('BINTRAY_KEY') ? project.property('BINTRAY_KEY') : ""
reductorVersion = '0.13.0'
reductorVersion = '0.13.1'

retrolambdaVersion = '2.4.0'
autoValueVersion = '1.3'
}


Expand Down
3 changes: 2 additions & 1 deletion compiller/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ dependencies {
compile 'com.google.auto.service:auto-service:1.0-rc2'
compile 'com.google.auto:auto-common:0.8'

compileOnly 'com.google.auto.value:auto-value:1.2'
compileOnly "com.google.auto.value:auto-value:${autoValueVersion}"

testCompile "com.google.auto.value:auto-value:${autoValueVersion}"
testCompile 'com.google.testing.compile:compile-testing:0.9'
testCompile 'junit:junit:4.12'
testCompile 'com.google.truth:truth:0.28'
Expand Down
4 changes: 2 additions & 2 deletions example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ dependencies {
compile 'com.facebook.stetho:stetho:1.3.1'
compile 'com.facebook.stetho:stetho-js-rhino:1.3.1'
compile 'com.google.code.gson:gson:2.7'
provided 'com.google.auto.value:auto-value:1.3'
apt 'com.google.auto.value:auto-value:1.3'
provided "com.google.auto.value:auto-value:${autoValueVersion}"
apt "com.google.auto.value:auto-value:${autoValueVersion}"
provided 'com.ryanharter.auto.value:auto-value-gson:0.4.2'
apt 'com.ryanharter.auto.value:auto-value-gson:0.4.2'
}
2 changes: 1 addition & 1 deletion lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply from: '../gradle/publishing.gradle'
apply from: '../gradle/jacoco.gradle'

dependencies {
retrolambdaConfig 'net.orfjackal.retrolambda:retrolambda:2.3.0'
retrolambdaConfig "net.orfjackal.retrolambda:retrolambda:${retrolambdaVersion}"
testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-core:1.10.19'
}
2 changes: 1 addition & 1 deletion reductor-observable/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply from: '../gradle/publishing.gradle'
apply from: '../gradle/jacoco.gradle'

dependencies {
retrolambdaConfig 'net.orfjackal.retrolambda:retrolambda:2.3.0'
retrolambdaConfig "net.orfjackal.retrolambda:retrolambda:${retrolambdaVersion}"

compile project(':lib')
compile 'io.reactivex:rxjava:1.2.1'
Expand Down
2 changes: 1 addition & 1 deletion reductor-rxjava/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'me.tatarka.retrolambda'
apply from: '../gradle/publishing.gradle'

dependencies {
retrolambdaConfig 'net.orfjackal.retrolambda:retrolambda:2.3.0'
retrolambdaConfig "net.orfjackal.retrolambda:retrolambda:${retrolambdaVersion}"
compile project(':lib')
compile 'io.reactivex:rxjava:1.2.1'
}
2 changes: 1 addition & 1 deletion reductor-rxjava2/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'me.tatarka.retrolambda'
apply from: '../gradle/publishing.gradle'

dependencies {
retrolambdaConfig 'net.orfjackal.retrolambda:retrolambda:2.3.0'
retrolambdaConfig "net.orfjackal.retrolambda:retrolambda:${retrolambdaVersion}"
compile project(':lib')
compile 'io.reactivex.rxjava2:rxjava:2.0.0'
}

0 comments on commit 833e6f2

Please sign in to comment.