has anyone come across a simlar maven error below?
i am unable to build my project due to the error below. All was working previously fine before i started working on th
I'm guessing you switched to Java 8. In this version Javadoc is stricter on the requirements.
You have three choices:
To disable the strict checking, add this to your pom.xml
org.apache.maven.plugins
maven-javadoc-plugin
-Xdoclint:none
to skip Javadoc while building, use this:
mvn -Dmaven.javadoc.skip=true verify
Further Information