ericariello
ericariello

Reputation: 111

Export project to jar file including javadoc

I was wondering if there's a way to export a project to a .jar file that INCLUDES its javadoc instead of creating a properties file in each project that includes that jar, as suggested in the question below.

How to attach javadoc or sources to jars in libs folder?

Thanks in advance.

Regards.

Upvotes: 1

Views: 2210

Answers (1)

Paco Lagunas
Paco Lagunas

Reputation: 330

Sorry, not possible. You must create your javadoc as a separated file and somehow distribute it together with your JAR.

Look at these questions:
How should one distribute the Javadoc for a Library?
How do I create a jar distributable for javadocs?

Upvotes: 1

Related Questions