Skip to content
Snippets Groups Projects
Commit 0d17403b authored by Kevin Risden's avatar Kevin Risden Committed by Sean Busbey
Browse files

[travis] Travis CI add oraclejdk9 (#1023)

* Add oraclejdk9 to .travis.yml

* Upgrade maven-compiler-plugin

* Exclude jdk.tools from hadoop dependency
parent 0350c37e
No related branches found
No related tags found
No related merge requests found
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
language: java language: java
jdk: jdk:
- oraclejdk9
- oraclejdk8 - oraclejdk8
- openjdk7 - openjdk7
......
...@@ -44,6 +44,12 @@ LICENSE file. ...@@ -44,6 +44,12 @@ LICENSE file.
<groupId>org.apache.hadoop</groupId> <groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-common</artifactId> <artifactId>hadoop-common</artifactId>
<version>${hadoop.version}</version> <version>${hadoop.version}</version>
<exclusions>
<exclusion>
<groupId>jdk.tools</groupId>
<artifactId>jdk.tools</artifactId>
</exclusion>
</exclusions>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.yahoo.ycsb</groupId> <groupId>com.yahoo.ycsb</groupId>
......
...@@ -33,6 +33,12 @@ LICENSE file. ...@@ -33,6 +33,12 @@ LICENSE file.
<groupId>org.apache.hbase</groupId> <groupId>org.apache.hbase</groupId>
<artifactId>hbase-client</artifactId> <artifactId>hbase-client</artifactId>
<version>${hbase098.version}</version> <version>${hbase098.version}</version>
<exclusions>
<exclusion>
<groupId>jdk.tools</groupId>
<artifactId>jdk.tools</artifactId>
</exclusion>
</exclusions>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.yahoo.ycsb</groupId> <groupId>com.yahoo.ycsb</groupId>
......
...@@ -186,7 +186,7 @@ LICENSE file. ...@@ -186,7 +186,7 @@ LICENSE file.
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version> <version>3.7.0</version>
<configuration> <configuration>
<source>1.7</source> <source>1.7</source>
<target>1.7</target> <target>1.7</target>
......
...@@ -65,6 +65,12 @@ LICENSE file. ...@@ -65,6 +65,12 @@ LICENSE file.
<artifactId>solr-test-framework</artifactId> <artifactId>solr-test-framework</artifactId>
<version>${solr.version}</version> <version>${solr.version}</version>
<scope>test</scope> <scope>test</scope>
<exclusions>
<exclusion>
<groupId>jdk.tools</groupId>
<artifactId>jdk.tools</artifactId>
</exclusion>
</exclusions>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>
...@@ -65,6 +65,12 @@ LICENSE file. ...@@ -65,6 +65,12 @@ LICENSE file.
<artifactId>solr-test-framework</artifactId> <artifactId>solr-test-framework</artifactId>
<version>${solr6.version}</version> <version>${solr6.version}</version>
<scope>test</scope> <scope>test</scope>
<exclusions>
<exclusion>
<groupId>jdk.tools</groupId>
<artifactId>jdk.tools</artifactId>
</exclusion>
</exclusions>
</dependency> </dependency>
</dependencies> </dependencies>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment