Author: bdekruijff at gmail.com
Date: Tue Nov 2 22:42:41 2010
New Revision: 235
Log:
AMDATU-116 Attaching source and javadoc jars in verify phase
Modified:
trunk/pom.xml
Modified: trunk/pom.xml
==============================================================================
--- trunk/pom.xml (original)
+++ trunk/pom.xml Tue Nov 2 22:42:41 2010
@@ -660,6 +660,36 @@
<artifactId>maven-bundle-plugin</artifactId>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <inherited>true</inherited>
+ <executions>
+ <execution>
+ <id>attach-javadocs</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <inherited>true</inherited>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
<!--
Since the Felix dependency manager 3.0.0 is not yet available in
online maven repositories, it must be
installed to the local maven repository. We use the
maven-install-plugin to do so during build