Getting Sources in NetBeans IDE from Maven Repositories
Join the DZone community and get the full member experience.
Join For FreeAdding a new Maven dependency to our project in NetBeans IDE is very easy. But this will only get us the compiled classes. But what if we want to see the source code or look at the Javadoc?
Well that is easy too! Suppose we have a project with a dependency on the Jakarta commons-lang library.

To get the sources for our library we right-click on Libraries and select Download All Library Sources.

NetBeans starts a download process to get the sources. Of course we must keep in mind the sources must be available otherwise NetBeans cannot download anything. Notice the changed icon for the library if the sources are download. This indicates sources are available. We can now open a libary and open a .class
. NetBeans opens the source code in read-only mode in the Java editor.

Published at DZone with permission of Hubert Klein Ikkink, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments