I have two projects in Netbeans that are closely related. These are separate projects, because one of the projects is a utility package that can be used in the future for another project. Is there a way to configure Netbeans so that the Javadoc generated for the main project will include references to the objects defined in the util project, instead of listing the full package path?
Change . I have found how to do this. In Project Properties> Build> Documenting, you can set advanced Javadoc options. The option to use is the link and then the URL of the documentation directory. However, I can get it to work with an absolute link, and it's hard for me to get a relative link to work with.
-link file:
-link file: ..\..\..\Util\dist\javadoc
Both project folders are in the C directory, so I think this should be the correct relative path based on the documentation.
source
share