You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ni...@apache.org on 2008/03/04 20:04:42 UTC

svn commit: r633587 - /commons/proper/commons-parent/trunk/pom.xml

Author: niallp
Date: Tue Mar  4 11:04:39 2008
New Revision: 633587

URL: http://svn.apache.org/viewvc?rev=633587&view=rev
Log:
Do James Carman's suggestion of adding site and assembly generation to "rc" profile (should be OK as commons-parent and commons-sandbox-parent use the "relesse" profile and all components now have assembly descriptors)
See http://mail-archives.apache.org/mod_mbox/commons-dev/200802.mbox/%3c55afdc850802211215m6202a5d5h907382c5ab18685@mail.gmail.com%3e

Modified:
    commons/proper/commons-parent/trunk/pom.xml

Modified: commons/proper/commons-parent/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/commons-parent/trunk/pom.xml?rev=633587&r1=633586&r2=633587&view=diff
==============================================================================
--- commons/proper/commons-parent/trunk/pom.xml (original)
+++ commons/proper/commons-parent/trunk/pom.xml Tue Mar  4 11:04:39 2008
@@ -480,6 +480,17 @@
             </configuration>
           </plugin>
           <plugin>
+            <artifactId>maven-site-plugin</artifactId>
+            <executions>
+              <execution>
+                <goals>
+                  <goal>site</goal>
+                </goals>
+                <phase>package</phase>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
             <artifactId>maven-source-plugin</artifactId>
             <executions>
               <execution>
@@ -510,6 +521,17 @@
                 <configuration>
                   <source>${maven.compile.source}</source>
                 </configuration>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <executions>
+              <execution>
+                <goals>
+                  <goal>attached</goal>
+                </goals>
+                <phase>package</phase>
               </execution>
             </executions>
           </plugin>