Skip to content

Commit

Permalink
Added Java 7 compilation flags
Browse files Browse the repository at this point in the history
  • Loading branch information
asantibanez committed Oct 17, 2016
1 parent 8042b21 commit 6680826
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions library/async/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
apply plugin: 'java'
apply plugin: 'com.novoda.bintray-release'

targetCompatibility = '1.7'
sourceCompatibility = '1.7'

buildscript {
repositories {
jcenter()
Expand Down
3 changes: 3 additions & 0 deletions library/core/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
apply plugin: 'java'
apply plugin: 'com.novoda.bintray-release'

targetCompatibility = '1.7'
sourceCompatibility = '1.7'

version '1.5'

buildscript {
Expand Down
3 changes: 3 additions & 0 deletions library/rx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ apply plugin: 'com.novoda.bintray-release'
apply plugin: 'jacoco'
apply plugin: 'com.github.kt3k.coveralls'

targetCompatibility = '1.7'
sourceCompatibility = '1.7'

buildscript {
repositories {
jcenter()
Expand Down
3 changes: 3 additions & 0 deletions library/sync/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
apply plugin: 'java'
apply plugin: 'com.novoda.bintray-release'

targetCompatibility = '1.7'
sourceCompatibility = '1.7'

buildscript {
repositories {
jcenter()
Expand Down

0 comments on commit 6680826

Please sign in to comment.