views:

22

answers:

1

NetBeans by default will not generate documentation from @author and @version tags. How do I enable this from within the IDE?

+1  A: 

Modify build.xml, the build file for Ant. Redefine your "javadoc" target to include all of the information you see fit. The solution is independent from NetBeans, so it'll work with any Ant-based build environment.

Here are some very concrete instructions.

Mike
Brilliant, thank you. I found the NetBeans specific ant properties file, it is: (project)/nbproject/project.properties - set the values for author and version to true just as your link explained for Eclipse.
kymully