You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by ws...@apache.org on 2006/07/16 04:57:15 UTC

svn commit: r422342 - in /struts/maven/trunk/struts2-archetype-starter: README.txt pom.xml src/main/resources/META-INF/archetype.xml src/main/resources/archetype-resources/pom.xml src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml

Author: wsmoak
Date: Sat Jul 15 19:57:15 2006
New Revision: 422342

URL: http://svn.apache.org/viewvc?rev=422342&view=rev
Log:
Finish renaming the archetype from quickstart to starter.
WW-1359

Modified:
    struts/maven/trunk/struts2-archetype-starter/README.txt
    struts/maven/trunk/struts2-archetype-starter/pom.xml
    struts/maven/trunk/struts2-archetype-starter/src/main/resources/META-INF/archetype.xml
    struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/pom.xml
    struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml

Modified: struts/maven/trunk/struts2-archetype-starter/README.txt
URL: http://svn.apache.org/viewvc/struts/maven/trunk/struts2-archetype-starter/README.txt?rev=422342&r1=422341&r2=422342&view=diff
==============================================================================
--- struts/maven/trunk/struts2-archetype-starter/README.txt (original)
+++ struts/maven/trunk/struts2-archetype-starter/README.txt Sat Jul 15 19:57:15 2006
@@ -30,7 +30,7 @@
   mvn archetype:create -DgroupId=com.myCompany.mySystem \
                        -DartifactId=myWebApp \
                        -DarchetypeGroupId=org.apache.struts \
-                       -DarchetypeArtifactId=struts2-archetype-quickstart \
+                       -DarchetypeArtifactId=struts2-archetype-starter \
                        -DarchetypeVersion=1.0-SNAPSHOT \
                        -DremoteRepositories=http://people.apache.org/maven-snapshot-repository
 

Modified: struts/maven/trunk/struts2-archetype-starter/pom.xml
URL: http://svn.apache.org/viewvc/struts/maven/trunk/struts2-archetype-starter/pom.xml?rev=422342&r1=422341&r2=422342&view=diff
==============================================================================
--- struts/maven/trunk/struts2-archetype-starter/pom.xml (original)
+++ struts/maven/trunk/struts2-archetype-starter/pom.xml Sat Jul 15 19:57:15 2006
@@ -8,7 +8,7 @@
   </parent>
 
   <modelVersion>4.0.0</modelVersion>
-  <artifactId>struts2-archetype-quickstart</artifactId>
+  <artifactId>struts2-archetype-starter</artifactId>
   <version>1.0-SNAPSHOT</version>
   <packaging>maven-plugin</packaging>
 </project>

Modified: struts/maven/trunk/struts2-archetype-starter/src/main/resources/META-INF/archetype.xml
URL: http://svn.apache.org/viewvc/struts/maven/trunk/struts2-archetype-starter/src/main/resources/META-INF/archetype.xml?rev=422342&r1=422341&r2=422342&view=diff
==============================================================================
--- struts/maven/trunk/struts2-archetype-starter/src/main/resources/META-INF/archetype.xml (original)
+++ struts/maven/trunk/struts2-archetype-starter/src/main/resources/META-INF/archetype.xml Sat Jul 15 19:57:15 2006
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
 <archetype>
-  <id>quickstart</id>
+  <id>starter</id>
   <sources>
     <source>src/main/java/com/myComp/myApp/HelloWorldAction.java</source>
     <source>src/main/java/com/myComp/myApp/IndexAction.java</source>

Modified: struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/pom.xml?rev=422342&r1=422341&r2=422342&view=diff
==============================================================================
--- struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/pom.xml (original)
+++ struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/pom.xml Sat Jul 15 19:57:15 2006
@@ -6,9 +6,9 @@
 	<artifactId>${artifactId}</artifactId>
 	<packaging>war</packaging>
 	<version>${version}</version>
-	<name>Struts 2 Quickstart Web App Sample</name>
+	<name>Struts 2 Starter Web App Sample</name>
 	<url>http://www.myComp.com</url>
-	<description>Struts 2 - Maven Archetype - Quickstart</description>
+	<description>Struts 2 - Maven Archetype - Starter</description>
 	
 	<dependencies>
 		<!-- Junit -->

Modified: struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml?rev=422342&r1=422341&r2=422342&view=diff
==============================================================================
--- struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml (original)
+++ struts/maven/trunk/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml Sat Jul 15 19:57:15 2006
@@ -4,7 +4,7 @@
 	"http://java.sun.com/dtd/web-app_2_3.dtd">
 	
 <web-app>
-	<display-name>SAF2 - Maven Archetype - Quickstart</display-name>
+	<display-name>Struts 2 - Maven Archetype - Starter</display-name>
 	
 	<!-- Filters -->
 	<filter>