I'm trying to use jax doclets to generate documentation for a REST project and I'm using jax doclets to do so. The problem is that all the documentation is generated except for my entities / dtos / whatever...
I get something like:
Output: com.emp.comp.entities.Assignment
instead of a link to Assignment. The Assignment class is not generated also.
What am I missing?
This is my pom:
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<reportSets>
<reportSet>
<configuration>
<doclet>com.lunatech.doclets.jax.jaxrs.JAXRSDoclet</doclet>
<docletArtifacts>
<docletArtifact>
<groupId>com.lunatech.jax-doclets</groupId>
<artifactId>doclets</artifactId>
<version>0.10.0</version>
</docletArtifact>
</docletArtifacts>
</configuration>
<reports>
<report>javadoc</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
I've also tried this configuration: http://www.lunatech-labs.com/open-source/jax-doclets/usage
In the comments of the methods I've tried @link, @see, @returnWarped... nothing worked.
Thank you in advance
javadoc? The way you have configured right now you must runmvn site. Runningmvn javadoc:javadocwill not run the above doclet. – maba Oct 2 '12 at 9:28