Repository: juddi Updated Branches: refs/heads/master 73a3eff1f -> 265e6594b
JUDDI-959 fix for javadocs on jdk8 Project: http://git-wip-us.apache.org/repos/asf/juddi/repo Commit: http://git-wip-us.apache.org/repos/asf/juddi/commit/265e6594 Tree: http://git-wip-us.apache.org/repos/asf/juddi/tree/265e6594 Diff: http://git-wip-us.apache.org/repos/asf/juddi/diff/265e6594 Branch: refs/heads/master Commit: 265e6594bf991c8f833535209118fce9464fd08d Parents: 73a3eff Author: Alex <[email protected]> Authored: Sat Jan 9 15:28:50 2016 -0500 Committer: Alex <[email protected]> Committed: Sat Jan 9 15:28:50 2016 -0500 ---------------------------------------------------------------------- pom.xml | 13 +++++++++++++ 1 file changed, 13 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/juddi/blob/265e6594/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 0e7762e..fcc2bd7 100644 --- a/pom.xml +++ b/pom.xml @@ -39,6 +39,7 @@ under the License. </prerequisites> <properties> + <javadoc.extra.settings></javadoc.extra.settings> <sourceReleaseAssemblyDescriptor>source-release</sourceReleaseAssemblyDescriptor> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> @@ -216,6 +217,7 @@ under the License. <artifactId>maven-javadoc-plugin</artifactId> <configuration> <aggregate>true</aggregate> + <additionalparam>${javadoc.extra.settings}</additionalparam> </configuration> <executions> <execution> @@ -379,7 +381,18 @@ under the License. </pluginRepository> --> </pluginRepositories> + <profiles> + <profile> + <id>doclint-java8-disable</id> + <activation> + <jdk>[1.8,)</jdk> + </activation> + <properties> + <javadoc.extra.settings>-Xdoclint:none</javadoc.extra.settings> + </properties> + </profile> + <!-- inherit from the apache parent: release-profile --> <profile> <id>apache-release</id> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
