You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by mm...@apache.org on 2018/01/17 20:58:19 UTC

calcite git commit: [CALCITE-2027] Drop support for Java 7

Repository: calcite
Updated Branches:
  refs/heads/master 73e57ad48 -> e9a3ab2c9


[CALCITE-2027] Drop support for Java 7


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

Branch: refs/heads/master
Commit: e9a3ab2c97d3c3d972f5ef7baca77ce74e4d0451
Parents: 73e57ad
Author: Michael Mior <mm...@uwaterloo.ca>
Authored: Wed Jan 10 14:36:26 2018 -0500
Committer: Michael Mior <mm...@uwaterloo.ca>
Committed: Wed Jan 17 15:58:15 2018 -0500

----------------------------------------------------------------------
 .travis.yml | 2 +-
 pom.xml     | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/calcite/blob/e9a3ab2c/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index f8cd9b2..3df535a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -38,6 +38,6 @@ cache:
 matrix:
   fast_finish: true
   include:
-    - jdk: openjdk7
     - jdk: oraclejdk8
+    - jdk: oraclejdk9
 # End .travis.yml

http://git-wip-us.apache.org/repos/asf/calcite/blob/e9a3ab2c/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index d4269b0..9655174 100644
--- a/pom.xml
+++ b/pom.xml
@@ -599,8 +599,8 @@ limitations under the License.
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-compiler-plugin</artifactId>
         <configuration>
-          <source>1.7</source>
-          <target>1.7</target>
+          <source>1.8</source>
+          <target>1.8</target>
           <compilerArgument>-Xlint:deprecation</compilerArgument>
         </configuration>
       </plugin>