[jboss-cvs] JBossAS SVN: r95314 - in projects/jboss-osgi/trunk: reactor/deployment and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Oct 21 12:25:31 EDT 2009


Author: thomas.diesler at jboss.com
Date: 2009-10-21 12:25:31 -0400 (Wed, 21 Oct 2009)
New Revision: 95314

Modified:
   projects/jboss-osgi/trunk/distribution/javadoc/scripts/assembly-javadoc-src.xml
   projects/jboss-osgi/trunk/reactor/deployment/pom.xml
Log:
Fix deployment javadoc issue

Modified: projects/jboss-osgi/trunk/distribution/javadoc/scripts/assembly-javadoc-src.xml
===================================================================
--- projects/jboss-osgi/trunk/distribution/javadoc/scripts/assembly-javadoc-src.xml	2009-10-21 16:10:07 UTC (rev 95313)
+++ projects/jboss-osgi/trunk/distribution/javadoc/scripts/assembly-javadoc-src.xml	2009-10-21 16:25:31 UTC (rev 95314)
@@ -15,7 +15,7 @@
         <include>*:jboss-osgi-apache-xerces:jar:sources</include>
         <include>*:jboss-osgi-blueprint:jar:sources</include>
         <include>*:jboss-osgi-common:jar:sources</include>
-        <!-- include>*:jboss-osgi-deployment:jar:sources</include -->
+        <include>*:jboss-osgi-deployment:jar:sources</include>
         <include>*:jboss-osgi-hotdeploy:jar:sources</include>
         <include>*:jboss-osgi-husky:jar:sources</include>
         <include>*:jboss-osgi-jaxb:jar:sources</include>

Modified: projects/jboss-osgi/trunk/reactor/deployment/pom.xml
===================================================================
--- projects/jboss-osgi/trunk/reactor/deployment/pom.xml	2009-10-21 16:10:07 UTC (rev 95313)
+++ projects/jboss-osgi/trunk/reactor/deployment/pom.xml	2009-10-21 16:25:31 UTC (rev 95314)
@@ -87,6 +87,29 @@
           </instructions>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>build-helper-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>attach-artifacts</id>
+            <phase>package</phase>
+            <goals>
+              <goal>attach-artifact</goal>
+            </goals>
+            <configuration>
+              <artifacts>
+                <artifact>
+                  <!-- For some reason the distribution javadoc module needs this -->
+                  <file>target/${artifactId}-${version}-sources.jar</file>
+                  <classifier>sources</classifier>
+                  <type>jar</type>
+                </artifact>
+              </artifacts>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
     </plugins>
   </build>
 




More information about the jboss-cvs-commits mailing list