You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by we...@apache.org on 2009/04/23 20:20:40 UTC

svn commit: r768002 - /struts/struts2/trunk/pom.xml

Author: wesw
Date: Thu Apr 23 18:20:39 2009
New Revision: 768002

URL: http://svn.apache.org/viewvc?rev=768002&view=rev
Log:
adding profile to disable assembly module

Modified:
    struts/struts2/trunk/pom.xml

Modified: struts/struts2/trunk/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/pom.xml?rev=768002&r1=768001&r2=768002&view=diff
==============================================================================
--- struts/struts2/trunk/pom.xml (original)
+++ struts/struts2/trunk/pom.xml Thu Apr 23 18:20:39 2009
@@ -62,7 +62,6 @@
         <module>apps</module>
         <module>plugins</module>
         <module>bundles</module>
-        <module>assembly</module>
     </modules>
 
     <licenses>
@@ -86,6 +85,17 @@
 
     <profiles>
         <profile>
+            <id>includeAssembly</id>
+            <activation>
+                <property>
+                    <name>!skipAssembly</name>
+                </property>
+            </activation>
+            <modules>
+                <module>assembly</module>
+            </modules>
+        </profile>
+        <profile>
             <id>xwork</id>
             <modules>
                 <module>../xwork</module>