Skip to content

Commit

Permalink
#34 vjkit for jdk9
Browse files Browse the repository at this point in the history
  • Loading branch information
calvin1978 committed Jun 14, 2018
1 parent 28f4b00 commit 015a1b5
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ language: java
jdk:
- oraclejdk8
- openjdk7
# - oraclejdk9
- oraclejdk9

branches:
only:
- master

script: mvn clean package
script: mvn clean package
41 changes: 35 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,7 @@
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
</properties>

<modules>
<module>vjmap</module>
<module>vjtop</module>
<module>vjkit</module>
</modules>


<distributionManagement>
<snapshotRepository>
Expand All @@ -48,8 +44,41 @@
</license>
</licenses>


<profiles>
<profile>
<id>jdk7</id>
<activation>
<jdk>1.7</jdk>
</activation>
<modules>
<module>vjmap</module>
<module>vjtop</module>
<module>vjkit</module>
</modules>
</profile>

<profile>
<id>jdk8</id>
<activation>
<jdk>1.8</jdk>
</activation>
<modules>
<module>vjmap</module>
<module>vjtop</module>
<module>vjkit</module>
</modules>
</profile>

<profile>
<id>jdk9</id>
<activation>
<jdk>1.9</jdk>
</activation>
<modules>
<module>vjkit</module>
</modules>
</profile>

<profile>
<id>release</id>
<build>
Expand Down

0 comments on commit 015a1b5

Please sign in to comment.