Author: wsmoak
Date: Sat Nov 12 21:23:08 2005
New Revision: 332891
URL: http://svn.apache.org/viewcvs?rev=332891&view=rev
Log:
Initial check-in of the directory structure and build files for the Struts
Blank archetype. Content will be copied from apps/blank/ and modified. When
complete, this will allow Maven 2 users to create a blank Struts app using 'mvn
archetype:create'.
Added:
struts/sandbox/trunk/archetypes/
struts/sandbox/trunk/archetypes/blank/
struts/sandbox/trunk/archetypes/blank/pom.xml (with props)
struts/sandbox/trunk/archetypes/blank/src/
struts/sandbox/trunk/archetypes/blank/src/main/
struts/sandbox/trunk/archetypes/blank/src/main/resources/
struts/sandbox/trunk/archetypes/blank/src/main/resources/META-INF/
struts/sandbox/trunk/archetypes/blank/src/main/resources/META-INF/archetype.xml
(with props)
struts/sandbox/trunk/archetypes/blank/src/main/resources/archetype-resources/
struts/sandbox/trunk/archetypes/blank/src/main/resources/archetype-resources/pom.xml
(with props)
struts/sandbox/trunk/archetypes/blank/src/main/resources/archetype-resources/src/
struts/sandbox/trunk/archetypes/blank/src/main/resources/archetype-resources/src/main/
struts/sandbox/trunk/archetypes/blank/src/main/resources/archetype-resources/src/main/resources/
Added: struts/sandbox/trunk/archetypes/blank/pom.xml
URL:
http://svn.apache.org/viewcvs/struts/sandbox/trunk/archetypes/blank/pom.xml?rev=332891&view=auto
==============================================================================
--- struts/sandbox/trunk/archetypes/blank/pom.xml (added)
+++ struts/sandbox/trunk/archetypes/blank/pom.xml Sat Nov 12 21:23:08 2005
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ 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>
+ <version>1.3.0-SNAPSHOT</version>
+ <packaging>maven-plugin</packaging>
+ <name>Struts Blank Archetype</name>
+
+</project>
+
Propchange: struts/sandbox/trunk/archetypes/blank/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: struts/sandbox/trunk/archetypes/blank/pom.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Added:
struts/sandbox/trunk/archetypes/blank/src/main/resources/META-INF/archetype.xml
URL:
http://svn.apache.org/viewcvs/struts/sandbox/trunk/archetypes/blank/src/main/resources/META-INF/archetype.xml?rev=332891&view=auto
==============================================================================
---
struts/sandbox/trunk/archetypes/blank/src/main/resources/META-INF/archetype.xml
(added)
+++
struts/sandbox/trunk/archetypes/blank/src/main/resources/META-INF/archetype.xml
Sat Nov 12 21:23:08 2005
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<archetype>
+ <id>blank</id>
+ <resources>
+ <resource>src/main/webapp/index.jsp</resource>
+ <resource>src/main/webapp/pages/Welcome.jsp</resource>
+ <resource>src/main/webapp/WEB-INF/struts-config.xml</resource>
+ <resource>src/main/webapp/WEB-INF/tiles-defs.xml</resource>
+ <resource>src/main/webapp/WEB-INF/validation.xml</resource>
+ <resource>src/main/webapp/WEB-INF/web.xml</resource>
+ <resource>src/main/resources/MessageResources.properties</resource>
+ </resources>
+</archetype>
Propchange:
struts/sandbox/trunk/archetypes/blank/src/main/resources/META-INF/archetype.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
struts/sandbox/trunk/archetypes/blank/src/main/resources/META-INF/archetype.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Added:
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=332891&view=auto
==============================================================================
---
struts/sandbox/trunk/archetypes/blank/src/main/resources/archetype-resources/pom.xml
(added)
+++
struts/sandbox/trunk/archetypes/blank/src/main/resources/archetype-resources/pom.xml
Sat Nov 12 21:23:08 2005
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ 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>${groupId}</groupId>
+ <artifactId>${artifactId}</artifactId>
+ <packaging>war</packaging>
+ <version>${version}</version>
+ <name>Struts Blank Archetype</name>
+ <url>http://struts.apache.org</url>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.struts</groupId>
+ <artifactId>struts-core</artifactId>
+ <version>1.3.0-dev</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.struts</groupId>
+ <artifactId>struts-taglib</artifactId>
+ <version>1.3.0-dev</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.struts</groupId>
+ <artifactId>struts-tiles</artifactId>
+ <version>1.3.0-dev</version>
+ </dependency>
+ </dependencies>
+ <build>
+ <finalName>${artifactId}</finalName>
+ </build>
+
+</project>
Propchange:
struts/sandbox/trunk/archetypes/blank/src/main/resources/archetype-resources/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
struts/sandbox/trunk/archetypes/blank/src/main/resources/archetype-resources/pom.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]