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 21:40:45 UTC

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

Repository: calcite
Updated Branches:
  refs/heads/master e0c82b342 -> c3a403c77


Revert "[CALCITE-2027] Drop support for Java 7"

This reverts commit e9a3ab2c97d3c3d972f5ef7baca77ce74e4d0451.


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

Branch: refs/heads/master
Commit: c3a403c77dad02dce7feba73863933b222d9f3bf
Parents: e0c82b3
Author: Michael Mior <mm...@uwaterloo.ca>
Authored: Wed Jan 17 16:40:10 2018 -0500
Committer: Michael Mior <mm...@uwaterloo.ca>
Committed: Wed Jan 17 16:40:10 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/c3a403c7/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 3df535a..f8cd9b2 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/c3a403c7/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 9655174..d4269b0 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.8</source>
-          <target>1.8</target>
+          <source>1.7</source>
+          <target>1.7</target>
           <compilerArgument>-Xlint:deprecation</compilerArgument>
         </configuration>
       </plugin>