I am trying to fix javadocs for my project (mainly missing @param
and @return
values), and since there quite a lot of code to fix, I am trying to use javadoc:fix goal:
mvn javadoc:fix
Unfortunately, it generates javadocs even for classes that had none to begin with. Is it possible to configure this goal to fix only existing javadocs?
I can't seem to find anything for this in maven-javadoc-plugin
Or is there a better option besides this maven plugin?