@Since javadoc auto tag for releases

Is there a tool to automatically add the @since tag to all elements when I want to have a release version?

So let's say I have many methods and my base system is working now, so I decided to publish it as version 0.1.0

Now I want to use a tool that searches for every missing @since tag and adds it accordingly.

I use Eclipse and I found JAutodoc, but as far as I can see, it allows me to search for missing tags, and I have to add them manually.

EDIT: One workaround that might be of interest to someone: from the very beginning, use the Eclipse template with the right tag and change the template after each release.

+5
source share
2 answers

This is similar to what your build tool should provide. If you are using maven, you should look at javadoc: fix. It looks like it is doing exactly what you want:

http://maven.apache.org/plugins/maven-javadoc-plugin/fix-mojo.html

+3
source

Can I just add a lesson that I learned about 27 years ago: do not try to bring the numbers of your control numbers in line with the production numbers. This is crazy.

0
source

All Articles