Skip to content

Commit

Permalink
Merge pull request #39 from lightglitch/fix1.8
Browse files Browse the repository at this point in the history
Fix build on JDK 1.8
  • Loading branch information
decebals committed May 27, 2015
2 parents baee04b + 13f3f41 commit 3aeefcd
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
<connection>scm:git:https://github.com/decebals/pf4j.git</connection>
<developerConnection>scm:git:https://github.com/decebals/pf4j.git</developerConnection>
<url>git@github.com/decebals/pf4j.git</url>
<tag>HEAD</tag>
</scm>
<tag>HEAD</tag>
</scm>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -111,6 +111,15 @@
</modules>

<profiles>
<profile>
<id>jdk8-build</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<properties>
<additionalparam>-Xdoclint:none</additionalparam>
</properties>
</profile>
<profile>
<id>release-sign-artifacts</id>
<activation>
Expand Down

0 comments on commit 3aeefcd

Please sign in to comment.