Is there an easy way / option of preventing javadoc warnings when building with Maven? We use the soyatec uml plugin for eclipse and it inserts special tags which make our build
The only answer I could find to this is by Configuring Custom Javadoc Tags.
An example could be like this:
org.apache.maven.plugins
maven-javadoc-plugin
2.8.1
uml.property
X
some.other.property
X
some.third.property
X
When running you will see this in the output:
mvn javadoc:javadoc
Note: Custom tags that were not seen: @uml.property
And you can disable non-error and non-warning messages by using this command:
mvn javadoc:javadoc -Dquiet
It might be a hard job to define all these tags but once done you will no longer see the warnings.
And you should probably define these custom tags in a parent pom that everyone can use to benefit all the work.