You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by cu...@apache.org on 2012/07/05 16:52:30 UTC

svn commit: r1357649 - /aries/trunk/util/util/pom.xml

Author: cumminsh
Date: Thu Jul  5 14:52:30 2012
New Revision: 1357649

URL: http://svn.apache.org/viewvc?rev=1357649&view=rev
Log:
[ARIES-862] Ensure that javadoc for all util classes is included in the util bundle.

Modified:
    aries/trunk/util/util/pom.xml

Modified: aries/trunk/util/util/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/util/util/pom.xml?rev=1357649&r1=1357648&r2=1357649&view=diff
==============================================================================
--- aries/trunk/util/util/pom.xml (original)
+++ aries/trunk/util/util/pom.xml Thu Jul  5 14:52:30 2012
@@ -102,4 +102,31 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
+
+    <build>
+     <plugins>
+<!-- Configure the javadoc plugin to also include the r42 javadoc -->
+      <plugin>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <version>2.8.1</version>
+        <executions>
+          <execution>
+            <id>javadoc-jar</id>
+            <phase>package</phase>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+            <configuration>
+              <!-- switch on dependency-driven aggregation -->
+              <includeDependencySources>true</includeDependencySources>
+              
+              <dependencySourceIncludes>
+                <dependencySourceInclude>org.apache.aries:*util*</dependencySourceInclude>
+              </dependencySourceIncludes>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+        </plugins>
+    </build>
 </project>