Author: pottlinger Date: Wed Sep 3 20:39:16 2014 New Revision: 1622353 URL: http://svn.apache.org/r1622353 Log: WHISKER-13: Javadoc errors due to HelpMojo
* Although we are using a version of maven plugins (3.3) that should have fixed the problems induced by Java8's stricter javadoc checking, the errors occur in Jenkins. * Disabling xdoclinting following hint at http://stackoverflow.com/questions/15886209/maven-is-not-working-in-java-8-when-javadoc-tags-are-incomplete * Will need to retry in case newer versions of maven plugins are used in Whisker. Modified: creadur/whisker/trunk/apache-whisker-plugin4maven/pom.xml creadur/whisker/trunk/pom.xml Modified: creadur/whisker/trunk/apache-whisker-plugin4maven/pom.xml URL: http://svn.apache.org/viewvc/creadur/whisker/trunk/apache-whisker-plugin4maven/pom.xml?rev=1622353&r1=1622352&r2=1622353&view=diff ============================================================================== --- creadur/whisker/trunk/apache-whisker-plugin4maven/pom.xml (original) +++ creadur/whisker/trunk/apache-whisker-plugin4maven/pom.xml Wed Sep 3 20:39:16 2014 @@ -172,6 +172,10 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> + <!-- see WHISKER-13, this is a temporary solution until mavenPlugins are working correctly with Java8 --> + <configuration> + <additionalparam>-Xdoclint:none</additionalparam> + </configuration> </plugin> </reportPlugins> </configuration> Modified: creadur/whisker/trunk/pom.xml URL: http://svn.apache.org/viewvc/creadur/whisker/trunk/pom.xml?rev=1622353&r1=1622352&r2=1622353&view=diff ============================================================================== --- creadur/whisker/trunk/pom.xml (original) +++ creadur/whisker/trunk/pom.xml Wed Sep 3 20:39:16 2014 @@ -163,6 +163,10 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> + <!-- see WHISKER-13, this is a temporary solution until mavenPlugins are working correctly with Java8 --> + <configuration> + <additionalparam>-Xdoclint:none</additionalparam> + </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId>
