Skip to content

Commit

Permalink
[travis] Travis CI add oraclejdk9 (#1023)
Browse files Browse the repository at this point in the history
* Add oraclejdk9 to .travis.yml

* Upgrade maven-compiler-plugin

* Exclude jdk.tools from hadoop dependency
  • Loading branch information
risdenk authored and busbey committed Sep 16, 2017
1 parent 0350c37 commit 0d17403
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
language: java

jdk:
- oraclejdk9
- oraclejdk8
- openjdk7

Expand Down
6 changes: 6 additions & 0 deletions accumulo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ LICENSE file.
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-common</artifactId>
<version>${hadoop.version}</version>
<exclusions>
<exclusion>
<groupId>jdk.tools</groupId>
<artifactId>jdk.tools</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.yahoo.ycsb</groupId>
Expand Down
6 changes: 6 additions & 0 deletions hbase098/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ LICENSE file.
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-client</artifactId>
<version>${hbase098.version}</version>
<exclusions>
<exclusion>
<groupId>jdk.tools</groupId>
<artifactId>jdk.tools</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.yahoo.ycsb</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ LICENSE file.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<version>3.7.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
Expand Down
6 changes: 6 additions & 0 deletions solr/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ LICENSE file.
<artifactId>solr-test-framework</artifactId>
<version>${solr.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>jdk.tools</groupId>
<artifactId>jdk.tools</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>
6 changes: 6 additions & 0 deletions solr6/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ LICENSE file.
<artifactId>solr-test-framework</artifactId>
<version>${solr6.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>jdk.tools</groupId>
<artifactId>jdk.tools</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>

Expand Down

0 comments on commit 0d17403

Please sign in to comment.