-
Jun 29th, 2010, 08:21 AM
#1
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
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules