Skip to content

Commit

Permalink
Merge pull request #15 from broadinstitute/update-build-jdk9
Browse files Browse the repository at this point in the history
Update build to support jdk9
  • Loading branch information
mtomko authored Apr 2, 2018
2 parents 7034140 + 7e803f9 commit 2781030
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ sudo: false
language: java

jdk:
- oraclejdk9
- oraclejdk8
- oraclejdk7
17 changes: 11 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,14 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.broadinstitute.gpp</groupId>
<artifactId>rigerj</artifactId>
<version>2.0.1</version>
<version>2.0.2</version>
<name>RigerJ</name>
<url>http://www.broadinstitute.org/genetic-perturbation-platform</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>commons-cli</groupId>
Expand All @@ -30,16 +34,17 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<version>3.7.0</version>
<configuration>
<encoding>UTF-8</encoding>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -53,7 +58,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<version>3.0.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand All @@ -67,7 +72,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.0.0</version>
<version>3.1.0</version>
<executions>
<execution>
<phase>package</phase>
Expand Down

0 comments on commit 2781030

Please sign in to comment.