Maven distribution with Javadoc
Hi, I'm using spring linked to my project with maven 2. It would help a lot if you can provide javadoc package as well.
I think it should be part of normal deploy proces with maven that javadoc plugin is bind to install or deploy phase
<!-- Package JavaDocs to JAR to upload to repo -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<!-- Restrict execution of source compilation to install -->
<phase>install</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
thank you