You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ma...@apache.org on 2015/10/27 00:34:01 UTC

incubator-geode git commit: GEODE-479 - Closing PR #23 bumping language level to Java 8

Repository: incubator-geode
Updated Branches:
  refs/heads/develop f0b81325f -> b639cbada


GEODE-479 - Closing PR #23 bumping language level to Java 8


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/b639cbad
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/b639cbad
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/b639cbad

Branch: refs/heads/develop
Commit: b639cbada258f1643a9e2438534db95308d81501
Parents: f0b8132
Author: William Markito <wm...@pivotal.io>
Authored: Mon Oct 26 16:32:32 2015 -0700
Committer: William Markito <wm...@pivotal.io>
Committed: Mon Oct 26 16:32:32 2015 -0700

----------------------------------------------------------------------
 build.gradle | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/b639cbad/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index 2e453ba..980eba8 100755
--- a/build.gradle
+++ b/build.gradle
@@ -78,8 +78,8 @@ subprojects {
   gradle.taskGraph.whenReady( { graph ->
     tasks.withType(JavaCompile).each { javac ->
       javac.configure {
-        sourceCompatibility '1.7'
-        targetCompatibility '1.7'
+        sourceCompatibility '1.8'
+        targetCompatibility '1.8'
         options.encoding = 'UTF-8'
       }
     }