Repository: struts Updated Branches: refs/heads/master a89bbe22c -> 9f6a0c9c9 refs/heads/support-2-3 5421930b4 -> 7c4bb7e7b
WW-4403 - add JDK 8 profile, disabling JavaDoc lint checker when building with JDK8 Project: http://git-wip-us.apache.org/repos/asf/struts/repo Commit: http://git-wip-us.apache.org/repos/asf/struts/commit/7c4bb7e7 Tree: http://git-wip-us.apache.org/repos/asf/struts/tree/7c4bb7e7 Diff: http://git-wip-us.apache.org/repos/asf/struts/diff/7c4bb7e7 Branch: refs/heads/support-2-3 Commit: 7c4bb7e7bd9da86eee09018c007556c12f2520e1 Parents: 5421930 Author: Rene Gielen <rgie...@apache.org> Authored: Thu Jan 14 17:43:20 2016 +0100 Committer: Rene Gielen <rgie...@apache.org> Committed: Thu Jan 14 17:43:20 2016 +0100 ---------------------------------------------------------------------- pom.xml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/struts/blob/7c4bb7e7/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index afa95f2..e406819 100644 --- a/pom.xml +++ b/pom.xml @@ -118,6 +118,25 @@ <module>../maven/struts-annotations</module> </modules> </profile> + <profile> + <id>jdk8</id> + <activation> + <jdk>1.8</jdk> + </activation> + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <additionalparam>-Xdoclint:none</additionalparam> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> + </profile> </profiles>