Initial revision

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163314 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Trygve Laugstol 2005-01-25 12:10:40 +00:00
parent cfc50a76aa
commit 9a893526e5
6 changed files with 58 additions and 0 deletions

View File

@ -0,0 +1,8 @@
target
*~
*.log
.classpath
.project
*.ipr
*.iws
*.iml

View File

@ -0,0 +1,11 @@
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>maven</groupId>
<artifactId>maven-archetypes</artifactId>
<version>1.0-alpha-1-SNAPSHOT</version>
</parent>
<groupId>maven</groupId>
<artifactId>maven-archetype-webapp</artifactId>
<version>1.0-alpha-1-SNAPSHOT</version>
</project>

View File

@ -0,0 +1,7 @@
<archetype>
<id>webapp</id>
<resources>
<resource>src/main/webapp/index.jsp</resource>
<resource>src/main/webapp/WEB-INF/web.xml</resource>
</resources>
</archetype>

View File

@ -0,0 +1,20 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>${groupId}</groupId>
<artifactId>${artifactId}</artifactId>
<version>${version}</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/webapp</directory>
</resource>
</resources>
</build>
</project>

View File

@ -0,0 +1,7 @@
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd" >
<web-app>
<display-name>Archetype Created Web Application</display-name>
</web-app>

View File

@ -0,0 +1,5 @@
<html>
<body>
<h2>Hello World!</h2>
</body>
</html>