How do you export javadoc as a .jar file in eclipse?

I finally finished with my JConsole Maker project. I have included all the Javadoc comments and I am ready to export Javadoc. I just don't know how to do this. I can do this in a folder, but is there any specific way to export it to .jar, so can Eclipse developers use it too?

+3
source share
1 answer

My answers don't match exactly what you are asking, but here is a way to create a .jar of your project (JConsole Maker) using the associated javadoc: After you have created javadoc in a folder, do

File> Export ...> Java> Jar File and select the "Export Java source files and resources" checkbox.

javadoc . , ...

+3

All Articles