You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2017/07/19 04:57:30 UTC

arrow git commit: ARROW-935: [Java] Build Javadoc and site with OpenJDK8 in Java CI build

Repository: arrow
Updated Branches:
  refs/heads/master fe9c7ef50 -> 6999dbd1e


ARROW-935: [Java] Build Javadoc and site with OpenJDK8 in Java CI build

Author: Wes McKinney <we...@twosigma.com>

Closes #778 from wesm/ARROW-935 and squashes the following commits:

54d54535 [Wes McKinney] Set simpleLogger.defaultLogLevel to warn
69878e03 [Wes McKinney] Run Maven commands in batch mode
7cc74694 [Wes McKinney] Build Javadoc and site with OpenJDK8


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

Branch: refs/heads/master
Commit: 6999dbd1e1186149693676ce2701763d7bc72c12
Parents: fe9c7ef
Author: Wes McKinney <we...@twosigma.com>
Authored: Wed Jul 19 00:57:25 2017 -0400
Committer: Wes McKinney <we...@twosigma.com>
Committed: Wed Jul 19 00:57:25 2017 -0400

----------------------------------------------------------------------
 .travis.yml              | 2 +-
 ci/travis_script_java.sh | 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/arrow/blob/6999dbd1/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index ff2cafe..cdf787c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -77,7 +77,7 @@ matrix:
     - $TRAVIS_BUILD_DIR/ci/travis_script_manylinux.sh
   - language: java
     os: linux
-    jdk: openjdk7
+    jdk: openjdk8
     script:
     - $TRAVIS_BUILD_DIR/ci/travis_script_java.sh
   - language: java

http://git-wip-us.apache.org/repos/asf/arrow/blob/6999dbd1/ci/travis_script_java.sh
----------------------------------------------------------------------
diff --git a/ci/travis_script_java.sh b/ci/travis_script_java.sh
index 4679f9c..259b73e 100755
--- a/ci/travis_script_java.sh
+++ b/ci/travis_script_java.sh
@@ -18,6 +18,9 @@ JAVA_DIR=${TRAVIS_BUILD_DIR}/java
 
 pushd $JAVA_DIR
 
+export MAVEN_OPTS="$MAVEN_OPTS -Dorg.slf4j.simpleLogger.defaultLogLevel=warn"
 mvn -B test
+mvn -B install
+mvn -B site
 
 popd