Author: wsmoak
Date: Thu Jan 5 19:20:50 2006
New Revision: 366403
URL: http://svn.apache.org/viewcvs?rev=366403&view=rev
Log:
Changed groupId to 'struts' and renamed to 'Struts Action Blank Archetype'
Modified:
struts/sandbox/trunk/archetypes/blank/README.txt
struts/sandbox/trunk/archetypes/blank/pom.xml
struts/sandbox/trunk/archetypes/blank/src/main/resources/archetype-resources/pom.xml
Modified: struts/sandbox/trunk/archetypes/blank/README.txt
URL:
http://svn.apache.org/viewcvs/struts/sandbox/trunk/archetypes/blank/README.txt?rev=366403&r1=366402&r2=366403&view=diff
==============================================================================
--- struts/sandbox/trunk/archetypes/blank/README.txt (original)
+++ struts/sandbox/trunk/archetypes/blank/README.txt Thu Jan 5 19:20:50 2006
@@ -1,8 +1,8 @@
-Struts Blank Archetype
-======================
+Struts Action Blank Archetype
+=============================
-This directory contains the Struts Blank Archetype for Maven 2.
+This directory contains the Struts Action Blank Archetype for Maven 2.
To build and install the archetype in your local repository:
@@ -12,8 +12,8 @@
$ cd ~/projects
$ mvn archetype:create
- -DarchetypeGroupId=org.apache.struts.archetypes
- -DarchetypeArtifactId=struts-archetype-blank
+ -DarchetypeGroupId=struts
+ -DarchetypeArtifactId=struts-action-archetype-blank
-DarchetypeVersion=1.3.0-SNAPSHOT
-DgroupId=com.mypackage
-DartifactId=my-webapp
@@ -30,8 +30,13 @@
In order to build the archetype (and the webapp created from it) you will need
the Struts Action, Taglib and Tiles jars in your local Maven 2 repository.
-You can accomplish this by building the artifacts with Maven 2, or by
installing
-the jars as follows:
+You can accomplish this by building the artifacts with Maven 2:
+
+$ svn co http://svn.apache.org/repos/asf/struts/current struts/current
+$ cd struts/current/build
+$ mvn install
+
+Alternately, download the nightly builds and install each file as follows:
$ mvn install:install-file
-Dfile=/path/to/struts-action-1.3.0-dev.jar
@@ -42,10 +47,6 @@
-DgeneratePom=true
Repeat for Tiles and Taglib.
-
-(The 'generatePom' parameter is currently only available if you build the
-install plugin from source. Otherwise, you can ignore Maven's complaints about
-missing poms, or manually create them in your local repository.)
Other Issues
Modified: struts/sandbox/trunk/archetypes/blank/pom.xml
URL:
http://svn.apache.org/viewcvs/struts/sandbox/trunk/archetypes/blank/pom.xml?rev=366403&r1=366402&r2=366403&view=diff
==============================================================================
--- struts/sandbox/trunk/archetypes/blank/pom.xml (original)
+++ struts/sandbox/trunk/archetypes/blank/pom.xml Thu Jan 5 19:20:50 2006
@@ -3,11 +3,11 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
- <groupId>org.apache.struts.archetypes</groupId>
- <artifactId>struts-archetype-blank</artifactId>
+ <groupId>struts</groupId>
+ <artifactId>struts-action-archetype-blank</artifactId>
<version>1.3.0-SNAPSHOT</version>
<packaging>maven-plugin</packaging>
- <name>Struts Blank Archetype</name>
+ <name>Struts Action Blank Archetype</name>
</project>
Modified:
struts/sandbox/trunk/archetypes/blank/src/main/resources/archetype-resources/pom.xml
URL:
http://svn.apache.org/viewcvs/struts/sandbox/trunk/archetypes/blank/src/main/resources/archetype-resources/pom.xml?rev=366403&r1=366402&r2=366403&view=diff
==============================================================================
---
struts/sandbox/trunk/archetypes/blank/src/main/resources/archetype-resources/pom.xml
(original)
+++
struts/sandbox/trunk/archetypes/blank/src/main/resources/archetype-resources/pom.xml
Thu Jan 5 19:20:50 2006
@@ -7,7 +7,7 @@
<artifactId>${artifactId}</artifactId>
<packaging>war</packaging>
<version>${version}</version>
- <name>Struts Blank Archetype</name>
+ <name>Struts Action Blank Archetype</name>
<url>http://struts.apache.org</url>
<dependencies>
<dependency>
@@ -17,19 +17,19 @@
<scope>test</scope>
</dependency>
<dependency>
- <groupId>org.apache.struts</groupId>
+ <groupId>struts</groupId>
<artifactId>struts-action</artifactId>
- <version>1.3.0-dev</version>
+ <version>1.3.0-SNAPSHOT</version>
</dependency>
<dependency>
- <groupId>org.apache.struts</groupId>
+ <groupId>struts</groupId>
<artifactId>struts-taglib</artifactId>
- <version>1.3.0-dev</version>
+ <version>1.3.0-SNAPSHOT</version>
</dependency>
<dependency>
- <groupId>org.apache.struts</groupId>
+ <groupId>struts</groupId>
<artifactId>struts-tiles</artifactId>
- <version>1.3.0-dev</version>
+ <version>1.3.0-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]