Repository: servicemix Updated Branches: refs/heads/servicemix-6.x a97b65950 -> 880f52ba3
SM-2854: Doclint for Javadoc fails on JDK 8 Project: http://git-wip-us.apache.org/repos/asf/servicemix/repo Commit: http://git-wip-us.apache.org/repos/asf/servicemix/commit/abdfcef0 Tree: http://git-wip-us.apache.org/repos/asf/servicemix/tree/abdfcef0 Diff: http://git-wip-us.apache.org/repos/asf/servicemix/diff/abdfcef0 Branch: refs/heads/servicemix-6.x Commit: abdfcef0afce15659b5c5ab0db3ddeacaf76805d Parents: a97b659 Author: Krzysztof Sobkowiak <[email protected]> Authored: Wed Feb 3 22:43:20 2016 +0100 Committer: Krzysztof Sobkowiak <[email protected]> Committed: Wed Feb 3 22:46:34 2016 +0100 ---------------------------------------------------------------------- pom.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/servicemix/blob/abdfcef0/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 919b590..29d0e63 100644 --- a/pom.xml +++ b/pom.xml @@ -532,12 +532,24 @@ <goals> <goal>jar</goal> </goals> + <configuration> + <additionalparam>${javadoc.opts}</additionalparam> + </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> + <profile> + <id>doclint-java8-disable</id> + <activation> + <jdk>[1.8,)</jdk> + </activation> + <properties> + <javadoc.opts>-Xdoclint:none</javadoc.opts> + </properties> + </profile> </profiles> </project>
