Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,12 @@ matrix:
jdk: openjdk8
script:
- $TRAVIS_BUILD_DIR/ci/travis_script_java.sh
- language: java
os: linux
env: ARROW_TRAVIS_SKIP_SITE=yes
jdk: oraclejdk9
script:
- $TRAVIS_BUILD_DIR/ci/travis_script_java.sh
- language: java
os: linux
env: ARROW_TEST_GROUP=integration
Expand Down
3 changes: 1 addition & 2 deletions ci/travis_script_java.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ 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
[ "${ARROW_TRAVIS_SKIP_SITE}" = "yes" ] || mvn -B site

popd
14 changes: 7 additions & 7 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>6.15</version>
<version>6.19</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
Expand Down Expand Up @@ -333,15 +333,15 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<version>3.6.2</version>
</plugin>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.3.1</version>
<version>3.0.0-M1</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.17</version>
<version>2.20</version>
<configuration>
<enableAssertions>true</enableAssertions>
<forkCount>${forkCount}</forkCount>
Expand Down Expand Up @@ -493,9 +493,9 @@

<dependency>
<!-- JMockit needs to be on class path before JUnit. -->
<groupId>com.googlecode.jmockit</groupId>
<groupId>org.jmockit</groupId>
<artifactId>jmockit</artifactId>
<version>1.7</version>
<version>1.33</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -537,7 +537,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<version>3.0.0-M1</version>
<reportSets>
<reportSet><!-- by default, id = "default" -->
<reports><!-- select non-aggregate reports -->
Expand Down
2 changes: 1 addition & 1 deletion java/tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.6</version>
<version>3.0.0</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
Expand Down