You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by cu...@apache.org on 2018/04/26 22:05:14 UTC

[arrow] branch master updated: ARROW-2498: [Java] Use java 1.8 instead of java 1.7

This is an automated email from the ASF dual-hosted git repository.

cutlerb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new c574006  ARROW-2498: [Java] Use java 1.8 instead of java 1.7
c574006 is described below

commit c574006b03ae9c2e22e0f71bfc94001dc354d132
Author: Andy Grove <an...@rms.com>
AuthorDate: Thu Apr 26 15:04:56 2018 -0700

    ARROW-2498: [Java] Use java 1.8 instead of java 1.7
    
    Author: Andy Grove <an...@rms.com>
    
    Closes #1936 from agrove-rms/jdk8 and squashes the following commits:
    
    d5dca81 <Andy Grove> remove jdk7 from CI matrix
    ef01df4 <Andy Grove> use java 1.8 instead of java 1.7
---
 .travis.yml  | 10 ----------
 java/pom.xml |  4 ++--
 2 files changed, 2 insertions(+), 12 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 59ad4bc..ed396b0 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -99,16 +99,6 @@ matrix:
     - if [ $ARROW_CI_PYTHON_AFFECTED == "1" ]; then docker pull quay.io/xhochy/arrow_manylinux1_x86_64_base:latest; fi
     script:
     - if [ $ARROW_CI_PYTHON_AFFECTED == "1" ]; then $TRAVIS_BUILD_DIR/ci/travis_script_manylinux.sh; fi
-  # Java w/ OpenJDK 7
-  - language: java
-    os: linux
-    jdk: openjdk7
-    before_script:
-    - if [ $ARROW_CI_JAVA_AFFECTED != "1" ]; then exit; fi
-    - $TRAVIS_BUILD_DIR/ci/travis_install_linux.sh
-    script:
-    - $TRAVIS_BUILD_DIR/ci/travis_script_java.sh
-    - $TRAVIS_BUILD_DIR/ci/travis_script_javadoc.sh
   # Java w/ Oracle JDK 9
   - language: java
     os: linux
diff --git a/java/pom.xml b/java/pom.xml
index 78afb0e..ae9fc86 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -183,8 +183,8 @@
         <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>
           <maxmem>2048m</maxmem>
           <useIncrementalCompilation>false</useIncrementalCompilation>
           <fork>true</fork>

-- 
To stop receiving notification emails like this one, please contact
cutlerb@apache.org.