diff options
author | Mário Franco <mario.ffranco@gmail.com> | 2015-05-27 10:06:23 +0100 |
---|---|---|
committer | Mário Franco <mario.ffranco@gmail.com> | 2015-05-27 10:06:23 +0100 |
commit | 1df9fb8aa1922feca732e245c775c9bb39caa946 (patch) | |
tree | 2a08dafa517c195217501ef332920dff122d4b11 /pom.xml | |
parent | baee04b909346723281775f3211a13147feaac02 (diff) | |
download | pf4j-1df9fb8aa1922feca732e245c775c9bb39caa946.tar.gz pf4j-1df9fb8aa1922feca732e245c775c9bb39caa946.zip |
Fix build on JDK 1.8
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -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> @@ -112,6 +112,15 @@ <profiles> <profile> + <id>JDK 8 Build</id> + <activation> + <jdk>[1.8,)</jdk> + </activation> + <properties> + <additionalparam>-Xdoclint:none</additionalparam> + </properties> + </profile> + <profile> <id>release-sign-artifacts</id> <activation> <property> |