Author: wsmoak
Date: Thu Apr  6 11:43:24 2006
New Revision: 392029

URL: http://svn.apache.org/viewcvs?rev=392029&view=rev
Log:
Moved the Struts Action parent pom to the top level in struts/action/trunk.
Added a <defaultGoal> so that 'mvn' is equivalent to 'mvn install'.

Added:
    struts/action/trunk/pom.xml
      - copied, changed from r391907, struts/action/trunk/build/pom.xml
Removed:
    struts/action/trunk/build/pom.xml
Modified:
    struts/action/trunk/assembly/pom.xml
    struts/action/trunk/core/pom.xml
    struts/action/trunk/el/pom.xml
    struts/action/trunk/extras/pom.xml
    struts/action/trunk/taglib/pom.xml

Modified: struts/action/trunk/assembly/pom.xml
URL: 
http://svn.apache.org/viewcvs/struts/action/trunk/assembly/pom.xml?rev=392029&r1=392028&r2=392029&view=diff
==============================================================================
--- struts/action/trunk/assembly/pom.xml (original)
+++ struts/action/trunk/assembly/pom.xml Thu Apr  6 11:43:24 2006
@@ -15,7 +15,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- * $Id:$
+ * $Id$
  */
 -->
 
@@ -36,7 +36,7 @@
   <modelVersion>4.0.0</modelVersion>
   <artifactId>struts-action-assembly</artifactId>
   <packaging>pom</packaging>
-  <name>Struts Action Assembly</name>
+  <name>Struts Action - Assembly</name>
   <description>
        Struts Action Assembly
   </description>
@@ -45,7 +45,6 @@
     <groupId>org.apache.struts.action</groupId>
     <artifactId>struts-build</artifactId>
     <version>1.3.2-SNAPSHOT</version>
-    <relativePath>../build/pom.xml</relativePath>
   </parent>
 
   <scm>

Modified: struts/action/trunk/core/pom.xml
URL: 
http://svn.apache.org/viewcvs/struts/action/trunk/core/pom.xml?rev=392029&r1=392028&r2=392029&view=diff
==============================================================================
--- struts/action/trunk/core/pom.xml (original)
+++ struts/action/trunk/core/pom.xml Thu Apr  6 11:43:24 2006
@@ -39,7 +39,6 @@
         <groupId>org.apache.struts.action</groupId>
         <artifactId>struts-build</artifactId>
         <version>1.3.2-SNAPSHOT</version>
-        <relativePath>../build/pom.xml</relativePath>
     </parent>
 
     <modelVersion>4.0.0</modelVersion>

Modified: struts/action/trunk/el/pom.xml
URL: 
http://svn.apache.org/viewcvs/struts/action/trunk/el/pom.xml?rev=392029&r1=392028&r2=392029&view=diff
==============================================================================
--- struts/action/trunk/el/pom.xml (original)
+++ struts/action/trunk/el/pom.xml Thu Apr  6 11:43:24 2006
@@ -38,14 +38,13 @@
       <groupId>org.apache.struts.action</groupId>
       <artifactId>struts-build</artifactId>
       <version>1.3.2-SNAPSHOT</version>
-      <relativePath>../build/pom.xml</relativePath>
    </parent>
 
    <modelVersion>4.0.0</modelVersion>
    <artifactId>struts-el</artifactId>
    <packaging>jar</packaging>
    <version>1.3.1-SNAPSHOT</version>
-   <name>Struts EL</name>
+   <name>Struts Action - EL</name>
    <url>http://struts.apache.org</url>
 
    <build>

Modified: struts/action/trunk/extras/pom.xml
URL: 
http://svn.apache.org/viewcvs/struts/action/trunk/extras/pom.xml?rev=392029&r1=392028&r2=392029&view=diff
==============================================================================
--- struts/action/trunk/extras/pom.xml (original)
+++ struts/action/trunk/extras/pom.xml Thu Apr  6 11:43:24 2006
@@ -38,14 +38,13 @@
       <groupId>org.apache.struts.action</groupId>
       <artifactId>struts-build</artifactId>
       <version>1.3.2-SNAPSHOT</version>
-      <relativePath>../build/pom.xml</relativePath>
    </parent>
    
    <modelVersion>4.0.0</modelVersion>
    <artifactId>struts-extras</artifactId>
    <packaging>jar</packaging>
    <version>1.3.1-SNAPSHOT</version>
-   <name>Struts Extras</name>
+   <name>Struts Action - Extras</name>
    <url>http://struts.apache.org</url>
 
    <build>

Copied: struts/action/trunk/pom.xml (from r391907, 
struts/action/trunk/build/pom.xml)
URL: 
http://svn.apache.org/viewcvs/struts/action/trunk/pom.xml?p2=struts/action/trunk/pom.xml&p1=struts/action/trunk/build/pom.xml&r1=391907&r2=392029&rev=392029&view=diff
==============================================================================
--- struts/action/trunk/build/pom.xml (original)
+++ struts/action/trunk/pom.xml Thu Apr  6 11:43:24 2006
@@ -40,7 +40,7 @@
     <artifactId>struts-build</artifactId>
     <version>1.3.2-SNAPSHOT</version>
     <packaging>pom</packaging>
-    <name>Apache Struts</name>
+    <name>Struts Action</name>
     <url>http://struts.apache.org</url>
 
     <inceptionYear>2000</inceptionYear>
@@ -269,11 +269,11 @@
     <profiles/>
 
     <modules>
-        <module>../core</module>
-        <module>../el</module>
-        <module>../extras</module>
-        <module>../taglib</module>
-        <!--module>../apps</module-->
+        <module>core</module>
+        <module>el</module>
+        <module>extras</module>
+        <module>taglib</module>
+        <!--module>apps</module-->
     </modules>
 
     <licenses>
@@ -303,6 +303,9 @@
                 </plugin>
             </plugins>
         </pluginManagement>
+        
+        <defaultGoal>install</defaultGoal>
+        
     </build>
 
     <dependencies/>

Modified: struts/action/trunk/taglib/pom.xml
URL: 
http://svn.apache.org/viewcvs/struts/action/trunk/taglib/pom.xml?rev=392029&r1=392028&r2=392029&view=diff
==============================================================================
--- struts/action/trunk/taglib/pom.xml (original)
+++ struts/action/trunk/taglib/pom.xml Thu Apr  6 11:43:24 2006
@@ -38,14 +38,13 @@
       <groupId>org.apache.struts.action</groupId>
       <artifactId>struts-build</artifactId>
       <version>1.3.2-SNAPSHOT</version>
-      <relativePath>../build/pom.xml</relativePath>
    </parent>
 
    <modelVersion>4.0.0</modelVersion>
    <artifactId>struts-taglib</artifactId>
    <packaging>jar</packaging>
    <version>1.3.1-SNAPSHOT</version>
-   <name>Struts Taglib</name>
+   <name>Struts Action - Taglib</name>
    <url>http://struts.apache.org</url>
 
    <build>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to