Maven is not working anymore when JavaDoc tags are incomplete

kokzvw

New Member
Since I use Maven I have been able to build and install in my local repository projects that have incomplete java doc tags (for example, a missing parameter). However, from one moment to another (do not know the reason) Maven is absolutely strict about this and show me lots of JavaDoc errors (e.g., \[code\]warning: no description for @param\[/code\]) when I try to build or install a project where the JavaDoc is not "perfect".The JavaDoc plugin is configured like this in my POM (before and after the problem):\[code\] <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin>\[/code\]How can I make Maven behave as before ? and any idea what could have occacionated this change in the behavior of Maven?I tested with both Maven 3.0.3 and 3.0.5 in OSX.
 
Top