remove things not released with the pom


git-svn-id: https://svn.apache.org/repos/asf/maven/archetype/tags/maven-archetype-bundles-3@541556 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/maven-archetype-archetype/pom.xml b/maven-archetype-archetype/pom.xml
deleted file mode 100644
index 74c9161..0000000
--- a/maven-archetype-archetype/pom.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-  http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
--->
-
-<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">
-  <parent>
-    <artifactId>maven-archetype-bundles</artifactId>
-    <groupId>org.apache.maven.archetypes</groupId>
-    <version>3-SNAPSHOT</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>  
-  <description>
-    An archetype which contains a sample archetype. 
-  </description>
-  <artifactId>maven-archetype-archetype</artifactId>
-  <name>Maven Archetype Archetype</name>
-  <version>1.1-SNAPSHOT</version>
-</project>
diff --git a/maven-archetype-archetype/src/main/resources/META-INF/maven/archetype.xml b/maven-archetype-archetype/src/main/resources/META-INF/maven/archetype.xml
deleted file mode 100644
index 37b8764..0000000
--- a/maven-archetype-archetype/src/main/resources/META-INF/maven/archetype.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<archetype>
-  <id>archetype</id>
-  <resources>
-    <resource>src/main/resources/archetype-resources/pom.xml</resource>
-    <resource>src/main/resources/archetype-resources/src/main/java/App.java</resource>
-    <resource>src/main/resources/archetype-resources/src/test/java/AppTest.java</resource>
-    <resource>src/main/resources/META-INF/maven/archetype.xml</resource>
-  </resources> 
-</archetype>
diff --git a/maven-archetype-archetype/src/main/resources/archetype-resources/pom.xml b/maven-archetype-archetype/src/main/resources/archetype-resources/pom.xml
deleted file mode 100644
index 3cbdc7a..0000000
--- a/maven-archetype-archetype/src/main/resources/archetype-resources/pom.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<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>
-  <version>${version}</version>
-  <name>Archetype - ${artifactId}</name>
-  <url>http://maven.apache.org</url>
-</project>
diff --git a/maven-archetype-archetype/src/main/resources/archetype-resources/src/main/resources/META-INF/maven/archetype.xml b/maven-archetype-archetype/src/main/resources/archetype-resources/src/main/resources/META-INF/maven/archetype.xml
deleted file mode 100644
index 7ec00e1..0000000
--- a/maven-archetype-archetype/src/main/resources/archetype-resources/src/main/resources/META-INF/maven/archetype.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<archetype>
-  <id>${artifactId}</id>
-  <sources>
-    <source>src/main/java/App.java</source>
-  </sources>
-  <testSources>
-    <source>src/test/java/AppTest.java</source>
-  </testSources>
-</archetype>
diff --git a/maven-archetype-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/pom.xml b/maven-archetype-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/pom.xml
deleted file mode 100644
index f428a18..0000000
--- a/maven-archetype-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/pom.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<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>
-  <version>$${version}</version>
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-</project>
diff --git a/maven-archetype-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/src/main/java/App.java b/maven-archetype-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/src/main/java/App.java
deleted file mode 100644
index 56524de..0000000
--- a/maven-archetype-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/src/main/java/App.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package $$package;
-
-/**
- * Hello world!
- *
- */
-public class App 
-{
-    public static void main( String[] args )
-    {
-        System.out.println( "Hello World!" );
-    }
-}
diff --git a/maven-archetype-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/src/test/java/AppTest.java b/maven-archetype-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/src/test/java/AppTest.java
deleted file mode 100644
index 7aa4558..0000000
--- a/maven-archetype-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/src/test/java/AppTest.java
+++ /dev/null
@@ -1,38 +0,0 @@
-package $$package;
-
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-/**
- * Unit test for simple App.
- */
-public class AppTest 
-    extends TestCase
-{
-    /**
-     * Create the test case
-     *
-     * @param testName name of the test case
-     */
-    public AppTest( String testName )
-    {
-        super( testName );
-    }
-
-    /**
-     * @return the suite of tests being tested
-     */
-    public static Test suite()
-    {
-        return new TestSuite( AppTest.class );
-    }
-
-    /**
-     * Rigourous Test :-)
-     */
-    public void testApp()
-    {
-        assertTrue( true );
-    }
-}
diff --git a/maven-archetype-j2ee-simple/pom.xml b/maven-archetype-j2ee-simple/pom.xml
deleted file mode 100644
index d385605..0000000
--- a/maven-archetype-j2ee-simple/pom.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-  http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
--->
-
-<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">
-  <parent>
-    <artifactId>maven-archetype-bundles</artifactId>
-    <groupId>org.apache.maven.archetypes</groupId>
-    <version>3-SNAPSHOT</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <description>
-    An archetype which contains a simplifed sample J2EE application.
-  </description>  
-  <artifactId>maven-archetype-j2ee-simple</artifactId>
-  <name>Maven Simple J2EE Archetype</name>
-  <version>1.1-SNAPSHOT</version>
-</project>
diff --git a/maven-archetype-j2ee-simple/src/main/resources/META-INF/archetype.xml b/maven-archetype-j2ee-simple/src/main/resources/META-INF/archetype.xml
deleted file mode 100644
index 311282e..0000000
--- a/maven-archetype-j2ee-simple/src/main/resources/META-INF/archetype.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<archetype>
-  <id>j2ee</id>
-  <resources>
-    <resource>pom.xml</resource>
-    <resource>ear/pom.xml</resource>
-    <resource>ejbs/src/main/resources/META-INF/ejb-jar.xml</resource>
-    <resource>ejbs/pom.xml</resource>
-    <resource>primary-source/pom.xml</resource>
-    <resource>projects/logging/pom.xml</resource>
-    <resource>projects/pom.xml</resource>
-    <resource>servlets/pom.xml</resource>
-    <resource>servlets/servlet/pom.xml</resource>
-    <resource>servlets/servlet/src/main/webapp/index.jsp</resource>
-    <resource>servlets/servlet/src/main/webapp/WEB-INF/web.xml</resource>
-  </resources>
-</archetype>
diff --git a/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/ear/pom.xml b/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/ear/pom.xml
deleted file mode 100644
index 2eebe45..0000000
--- a/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/ear/pom.xml
+++ /dev/null
@@ -1,47 +0,0 @@
-<project>
-   <modelVersion>4.0.0</modelVersion>
-   <groupId>root.project</groupId>
-   <artifactId>ear</artifactId>
-   <packaging>ear</packaging>
-   <version>1.0</version>
-   <name>ear assembly</name>
-   <parent>
-      <groupId>root</groupId>
-      <artifactId>project</artifactId>
-      <version>1.0</version>
-   </parent>
-   <dependencies>
-      <dependency>
-         <groupId>root.project</groupId>
-         <artifactId>ejbs</artifactId>
-         <type>ejb</type>
-      </dependency>
-      <dependency>
-         <groupId>root.project.servlets</groupId>
-         <artifactId>servlet</artifactId>
-         <type>war</type>
-      </dependency>
-      <dependency>
-         <groupId>root.project</groupId>
-         <artifactId>primary-source</artifactId>
-      </dependency>
-      <dependency>
-         <groupId>root.project.projects</groupId>
-         <artifactId>logging</artifactId>
-      </dependency>
-   </dependencies>
-   <build>
-      <plugins>
-         <plugin>
-            <artifactId>maven-ear-plugin</artifactId>
-            <configuration>
-               <archive>
-                  <manifest>
-                     <addClasspath>true</addClasspath>
-                  </manifest>
-               </archive>
-            </configuration>
-         </plugin>
-      </plugins>
-   </build>
-</project>
diff --git a/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/ejbs/pom.xml b/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/ejbs/pom.xml
deleted file mode 100644
index 3477dd7..0000000
--- a/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/ejbs/pom.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<project>
-   <modelVersion>4.0.0</modelVersion>
-   <groupId>root.project</groupId>
-   <artifactId>ejbs</artifactId>
-   <packaging>ejb</packaging>
-   <version>1.0</version>
-   <name>enterprise java beans</name>
-   <parent>
-      <groupId>root</groupId>
-      <artifactId>project</artifactId>
-      <version>1.0</version>
-   </parent>
-   <dependencies>
-      <dependency>
-         <groupId>root.project</groupId>
-         <artifactId>primary-source</artifactId>
-      </dependency>
-      <dependency>
-         <groupId>root.project.projects</groupId>
-         <artifactId>logging</artifactId>
-      </dependency>
-  </dependencies>
-   <build>
-      <plugins>
-         <plugin>
-            <artifactId>maven-ejb-plugin</artifactId>
-            <configuration>
-               <archive>
-                  <manifest>
-                     <addClasspath>true</addClasspath>
-                  </manifest>
-               </archive> 
-            </configuration>
-         </plugin>
-      </plugins>
-   </build>
-</project>
diff --git a/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/ejbs/src/main/resources/META-INF/ejb-jar.xml b/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/ejbs/src/main/resources/META-INF/ejb-jar.xml
deleted file mode 100644
index e69de29..0000000
--- a/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/ejbs/src/main/resources/META-INF/ejb-jar.xml
+++ /dev/null
diff --git a/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/pom.xml b/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/pom.xml
deleted file mode 100644
index c609786..0000000
--- a/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/pom.xml
+++ /dev/null
@@ -1,61 +0,0 @@
-<project>
-   <modelVersion>4.0.0</modelVersion>
-   <groupId>root</groupId>
-   <version>1.0</version>
-   <artifactId>project</artifactId>
-   <packaging>pom</packaging>
-   <name>project</name>
-   <modules>
-      <module>projects</module>
-      <module>primary-source</module>
-      <module>servlets</module>
-      <module>ejbs</module>
-      <module>ear</module>
-   </modules>
-   <build>
-      <pluginManagement>
-         <plugins>
-            <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-site-plugin</artifactId>
-               <configuration>
-                  <unzipCommand>/usr/bin/unzip -o > err.txt</unzipCommand>
-               </configuration>
-            </plugin>
-         </plugins>
-      </pluginManagement>
-   </build>
-   <dependencyManagement>
-      <dependencies>
-         <dependency>
-            <groupId>root.project.projects</groupId>
-            <artifactId>logging</artifactId>
-            <version>1.0</version>
-         </dependency>
-         <dependency>
-            <groupId>root.project</groupId>
-            <artifactId>primary-source</artifactId>
-            <version>1.0</version>
-         </dependency>
-         <dependency>
-            <groupId>root.project.servlets</groupId>
-            <artifactId>servlet</artifactId>
-            <version>1.0</version>
-            <type>war</type>
-         </dependency>
-         <dependency>
-            <groupId>root.project</groupId>
-            <artifactId>ejbs</artifactId>
-            <version>1.0</version>
-            <type>ejb</type>
-         </dependency>
-      </dependencies>
-   </dependencyManagement>
-   <distributionManagement>
-      <site>
-         <id>site</id>
-         <name>project website</name>
-         <url>scp://local.company.com/websites/project.company.com/</url>
-      </site>
-   </distributionManagement>
-</project>
diff --git a/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/primary-source/pom.xml b/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/primary-source/pom.xml
deleted file mode 100644
index 6537299..0000000
--- a/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/primary-source/pom.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-<project>
-   <modelVersion>4.0.0</modelVersion>
-   <groupId>root.project</groupId>
-   <artifactId>primary-source</artifactId>
-   <packaging>jar</packaging>
-   <name>core project classes</name>
-   <parent>
-      <groupId>root</groupId>
-      <artifactId>project</artifactId>
-      <version>1.0</version>
-   </parent>
-   <dependencies>
-      <dependency>
-         <groupId>root.project.projects</groupId>
-         <artifactId>logging</artifactId>
-      </dependency>                  
-   </dependencies>
-   <build>
-      <plugins>
-         <plugin>
-            <artifactId>maven-compiler-plugin</artifactId>
-            <configuration>
-               <encoding>iso-8859-1</encoding>
-            </configuration>
-         </plugin>
-         <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-javadoc-plugin</artifactId>
-            <configuration>
-               <minmemory>128m</minmemory>
-               <maxmemory>512m</maxmemory>
-            </configuration>
-         </plugin>
-      </plugins>
-   </build>
-</project>
diff --git a/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/projects/logging/pom.xml b/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/projects/logging/pom.xml
deleted file mode 100644
index 4c426ea..0000000
--- a/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/projects/logging/pom.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<project>
-   <modelVersion>4.0.0</modelVersion>
-   <groupId>root.project.projects</groupId>
-   <artifactId>logging</artifactId>
-   <packaging>jar</packaging>
-   <name>logging</name>
-   <parent>
-      <groupId>root.project</groupId>
-      <artifactId>projects</artifactId>
-      <version>1.0</version>
-   </parent>
-</project>
diff --git a/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/projects/pom.xml b/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/projects/pom.xml
deleted file mode 100644
index a7774b6..0000000
--- a/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/projects/pom.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<project>
-   <modelVersion>4.0.0</modelVersion>
-   <groupId>root.project</groupId>
-   <version>1.0</version>
-   <artifactId>projects</artifactId>
-   <packaging>pom</packaging>
-   <name>sub projects</name>
-   <parent>
-      <groupId>root</groupId>
-      <artifactId>project</artifactId>
-      <version>1.0</version>
-   </parent>
-   <modules>
-      <module>logging</module>
-   </modules>
-</project>
diff --git a/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/servlets/pom.xml b/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/servlets/pom.xml
deleted file mode 100644
index a7e6302..0000000
--- a/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/servlets/pom.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<project>
-   <modelVersion>4.0.0</modelVersion>
-   <groupId>root.project</groupId>
-   <artifactId>servlets</artifactId>
-   <packaging>pom</packaging>
-   <name>servlets</name>
-   <version>1.0</version>
-   <parent>
-      <groupId>root</groupId>
-      <artifactId>project</artifactId>
-      <version>1.0</version>
-   </parent>
-   <modules>
-      <module>servlet</module>
-   </modules>
-</project>
-
diff --git a/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/servlets/servlet/pom.xml b/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/servlets/servlet/pom.xml
deleted file mode 100644
index b9ce63f..0000000
--- a/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/servlets/servlet/pom.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<project>
-   <modelVersion>4.0.0</modelVersion>
-   <groupId>root.project.servlets</groupId>
-   <artifactId>servlet</artifactId>
-   <packaging>war</packaging>
-   <name>servlet</name>
-   <parent>
-      <groupId>root.project</groupId>
-      <artifactId>servlets</artifactId>
-      <version>1.0</version>
-   </parent>
-   <dependencies>
-      <dependency>
-         <groupId>root.project</groupId>
-         <artifactId>primary-source</artifactId>
-         <scope>provided</scope>
-      </dependency>
-   </dependencies>
-</project>
diff --git a/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/servlets/servlet/src/main/webapp/WEB-INF/web.xml b/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/servlets/servlet/src/main/webapp/WEB-INF/web.xml
deleted file mode 100644
index e69de29..0000000
--- a/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/servlets/servlet/src/main/webapp/WEB-INF/web.xml
+++ /dev/null
diff --git a/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/servlets/servlet/src/main/webapp/index.jsp b/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/servlets/servlet/src/main/webapp/index.jsp
deleted file mode 100644
index c38169b..0000000
--- a/maven-archetype-j2ee-simple/src/main/resources/archetype-resources/servlets/servlet/src/main/webapp/index.jsp
+++ /dev/null
@@ -1,5 +0,0 @@
-<html>
-<body>
-<h2>Hello World!</h2>
-</body>
-</html>
diff --git a/maven-archetype-mojo/README.txt b/maven-archetype-mojo/README.txt
deleted file mode 100644
index d5f7c58..0000000
--- a/maven-archetype-mojo/README.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-This is deprecated in favour of an archetype with a better artifactId. That
-being maven-archetype-plugin.
diff --git a/maven-archetype-mojo/pom.xml b/maven-archetype-mojo/pom.xml
deleted file mode 100644
index ecbed69..0000000
--- a/maven-archetype-mojo/pom.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-  http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
--->
-
-<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">
-  <parent>
-    <artifactId>maven-archetype-bundles</artifactId>
-    <groupId>org.apache.maven.archetypes</groupId>
-    <version>3-SNAPSHOT</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <description>
-    An archetype which contains a sample a sample Maven plugin.
-  </description>
-  <artifactId>maven-archetype-mojo</artifactId>
-  <name>Maven Mojo Archetype</name>
-  <version>1.1-SNAPSHOT</version>
-</project>
diff --git a/maven-archetype-mojo/src/main/resources/META-INF/archetype.xml b/maven-archetype-mojo/src/main/resources/META-INF/archetype.xml
deleted file mode 100644
index 29b98b2..0000000
--- a/maven-archetype-mojo/src/main/resources/META-INF/archetype.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<archetype>
-  <id>plugin</id>
-  <sources>
-    <source>src/main/java/MyMojo.java</source>
-  </sources>
-</archetype>
diff --git a/maven-archetype-mojo/src/main/resources/archetype-resources/pom.xml b/maven-archetype-mojo/src/main/resources/archetype-resources/pom.xml
deleted file mode 100644
index 2f6027c..0000000
--- a/maven-archetype-mojo/src/main/resources/archetype-resources/pom.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<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>maven-plugin</packaging>
-  <version>${version}</version>
-  <name>${artifactId} Maven Mojo</name>
-  <url>http://maven.apache.org</url>
-  <dependencies>
-    <dependency>
-      <groupId>org.apache.maven</groupId>
-      <artifactId>maven-plugin-api</artifactId>
-      <version>2.0</version>
-    </dependency>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-</project>
diff --git a/maven-archetype-mojo/src/main/resources/archetype-resources/src/main/java/MyMojo.java b/maven-archetype-mojo/src/main/resources/archetype-resources/src/main/java/MyMojo.java
deleted file mode 100644
index 9476efc..0000000
--- a/maven-archetype-mojo/src/main/resources/archetype-resources/src/main/java/MyMojo.java
+++ /dev/null
@@ -1,81 +0,0 @@
-package $package;
-
-/*
- * Copyright 2001-2005 The Apache Software Foundation.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-import org.apache.maven.plugin.AbstractMojo;
-import org.apache.maven.plugin.MojoExecutionException;
-
-import java.io.File;
-import java.io.FileWriter;
-import java.io.IOException;
-
-/**
- * Goal which touches a timestamp file.
- *
- * @goal touch
- * 
- * @phase process-sources
- */
-public class MyMojo
-    extends AbstractMojo
-{
-    /**
-     * Location of the file.
-     * @parameter expression="${project.build.directory}"
-     * @required
-     */
-    private File outputDirectory;
-
-    public void execute()
-        throws MojoExecutionException
-    {
-        File f = outputDirectory;
-
-        if ( !f.exists() )
-        {
-            f.mkdirs();
-        }
-
-        File touch = new File( f, "touch.txt" );
-
-        FileWriter w = null;
-        try
-        {
-            w = new FileWriter( touch );
-
-            w.write( "touch.txt" );
-        }
-        catch ( IOException e )
-        {
-            throw new MojoExecutionException( "Error creating file " + touch, e );
-        }
-        finally
-        {
-            if ( w != null )
-            {
-                try
-                {
-                    w.close();
-                }
-                catch ( IOException e )
-                {
-                    // ignore
-                }
-            }
-        }
-    }
-}
diff --git a/maven-archetype-plugin-site/pom.xml b/maven-archetype-plugin-site/pom.xml
deleted file mode 100644
index bbc1322..0000000
--- a/maven-archetype-plugin-site/pom.xml
+++ /dev/null
@@ -1,38 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-  http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
--->
-
-<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">
-  <parent>
-    <artifactId>maven-archetype-bundles</artifactId>
-    <groupId>org.apache.maven.archetypes</groupId>
-    <version>3-SNAPSHOT</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <description>
-    An archetype which contains a sample Maven plugin site. This archetype can be layered upon an
-    existing Maven plugin project.
-  </description>
-  <artifactId>maven-archetype-plugin-site</artifactId>
-  <version>1.1-SNAPSHOT</version>
-  <name>Maven Plugin Site Archetype</name>
-</project>
diff --git a/maven-archetype-plugin-site/src/main/resources/META-INF/archetype.xml b/maven-archetype-plugin-site/src/main/resources/META-INF/archetype.xml
deleted file mode 100644
index 6cc4d14..0000000
--- a/maven-archetype-plugin-site/src/main/resources/META-INF/archetype.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<archetype>
-  <id>plugin</id>
-  <allowPartial>true</allowPartial>
-  <siteResources>
-    <resource>src/site/site.xml</resource>
-    <resource>src/site/apt/index.apt</resource>
-    <resource>src/site/apt/usage.apt</resource>
-    <resource>src/site/apt/examples/example.apt</resource>
-  </siteResources>
-</archetype>
diff --git a/maven-archetype-plugin-site/src/main/resources/archetype-resources/pom.xml b/maven-archetype-plugin-site/src/main/resources/archetype-resources/pom.xml
deleted file mode 100644
index 26b3da2..0000000
--- a/maven-archetype-plugin-site/src/main/resources/archetype-resources/pom.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<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>
-  <version>${version}</version>
-  <name>Maven</name>
-  <url>http://maven.apache.org/maven2</url>
-  <inceptionYear>2001</inceptionYear>
-  <distributionManagement>
-    <site>
-      <id>website</id>
-      <url>file://${basedir}/target/deployed-site</url>
-    </site>
-  </distributionManagement>
-</project>
diff --git a/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/apt/examples/example.apt b/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/apt/examples/example.apt
deleted file mode 100644
index de78b9b..0000000
--- a/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/apt/examples/example.apt
+++ /dev/null
@@ -1,34 +0,0 @@
- ------
- SMTP Authentication
- ------
- Allan Ramirez
- ------
- 21 October 2005
- ------
-
-SMTP Authentication
-
-  If the SMTP host needs authentication, you can provide your username and password
-  in the <<<\<configuration\>>>> section:
-
--------------------
-<project>
-  ...
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-changes-plugin</artifactId>
-        <configuration>
-          <smtpHost>mail.yourhost.com</smtpHost>
-          <smtpPort implementation="java.lang.Integer">25</smtpPort>
-          <username>some@email.com</username>
-          <password>somepassword</password>
-          ...
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
-  ...
-</project>
--------------------
diff --git a/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/apt/index.apt b/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/apt/index.apt
deleted file mode 100644
index ac497cc..0000000
--- a/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/apt/index.apt
+++ /dev/null
@@ -1,30 +0,0 @@
- ------
- Introduction
- ------
- Jason van Zyl
- ------
- 27 November 2006
- ------
-
-Maven 2 SuperDuper Plugin
-
-  This plugin is used to transform your development life. Don't bother with self-help
-  books on how to get over your build-time blues. Just use this plugin and
-  everything will miraculously change.
-
-* Goals Overview
-
-  * {{{superduper-transform.html}superduper:transform}} performs the miraculous build transformation.
-
-  []
-
-* Usage
-
-  Instructions on how to use the SuperDuper Plugin can be found {{{usage.html}here}}.
-
-* Examples
-
-  To provide you with better understanding of some usages of the SuperDuper Plugin,
-  you can take a look at the following examples:
-
-  * {{{examples/sample-example.html}Sample Example}}
diff --git a/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/apt/usage.apt b/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/apt/usage.apt
deleted file mode 100644
index 9ebd6e8..0000000
--- a/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/apt/usage.apt
+++ /dev/null
@@ -1,21 +0,0 @@
- ------
- Usage
- ------
- Jason van Zyl
- ------
- 27 November 2006
- ------
-
-Usage
-
- This plugin is used to create miraculously transform your build!
- 
-*How to miraculously transform your build
- 
- Describe here how you miraculously transform peoples' builds! 
-
--------------------
-
-Put your awesome example here.
-
--------------------
\ No newline at end of file
diff --git a/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/site.xml b/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/site.xml
deleted file mode 100644
index f5ec493..0000000
--- a/maven-archetype-plugin-site/src/main/resources/archetype-resources/src/site/site.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-
-<!--
-/*
- * Copyright 2006 The Apache Software Foundation.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
--->
-
-<project>
-  <body>
-    <menu name="Overview">
-      <item name="Introduction" href="index.html"/>
-      <item name="Goals" href="plugin-info.html"/>
-      <item name="Usage" href="usage.html"/>
-      <item name="FAQ" href="faq.html"/>
-    </menu>
-    <menu name="Samples">
-      <item name="Sample Changes Report" href="changes-report.html"/>
-      <item name="Live JIRA Report" href="jira-report.html"/>
-    </menu>
-
-    <menu name="Examples">
-      <item name="Alternate Location for the changes.xml File" href="examples/alternate-changes-xml-location.html"/>
-      <item name="SMTP Authentication" href="examples/smtp-authentication.html"/>
-    </menu>
-  </body>
-</project>
diff --git a/maven-archetype-plugin/pom.xml b/maven-archetype-plugin/pom.xml
deleted file mode 100644
index b0bc058..0000000
--- a/maven-archetype-plugin/pom.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-  http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
--->
-
-<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">
-  <parent>
-    <artifactId>maven-archetype-bundles</artifactId>
-    <groupId>org.apache.maven.archetypes</groupId>
-    <version>3-SNAPSHOT</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <description>
-    An archetype which contains a sample Maven plugin.
-  </description>
-  <artifactId>maven-archetype-plugin</artifactId>
-  <name>Maven Plugin Archetype</name>
-  <version>1.1-SNAPSHOT</version>
-</project>
diff --git a/maven-archetype-plugin/src/main/resources/META-INF/archetype.xml b/maven-archetype-plugin/src/main/resources/META-INF/archetype.xml
deleted file mode 100644
index 29b98b2..0000000
--- a/maven-archetype-plugin/src/main/resources/META-INF/archetype.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<archetype>
-  <id>plugin</id>
-  <sources>
-    <source>src/main/java/MyMojo.java</source>
-  </sources>
-</archetype>
diff --git a/maven-archetype-plugin/src/main/resources/archetype-resources/pom.xml b/maven-archetype-plugin/src/main/resources/archetype-resources/pom.xml
deleted file mode 100644
index 2f6027c..0000000
--- a/maven-archetype-plugin/src/main/resources/archetype-resources/pom.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<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>maven-plugin</packaging>
-  <version>${version}</version>
-  <name>${artifactId} Maven Mojo</name>
-  <url>http://maven.apache.org</url>
-  <dependencies>
-    <dependency>
-      <groupId>org.apache.maven</groupId>
-      <artifactId>maven-plugin-api</artifactId>
-      <version>2.0</version>
-    </dependency>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-</project>
diff --git a/maven-archetype-plugin/src/main/resources/archetype-resources/src/main/java/MyMojo.java b/maven-archetype-plugin/src/main/resources/archetype-resources/src/main/java/MyMojo.java
deleted file mode 100644
index 9476efc..0000000
--- a/maven-archetype-plugin/src/main/resources/archetype-resources/src/main/java/MyMojo.java
+++ /dev/null
@@ -1,81 +0,0 @@
-package $package;
-
-/*
- * Copyright 2001-2005 The Apache Software Foundation.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-import org.apache.maven.plugin.AbstractMojo;
-import org.apache.maven.plugin.MojoExecutionException;
-
-import java.io.File;
-import java.io.FileWriter;
-import java.io.IOException;
-
-/**
- * Goal which touches a timestamp file.
- *
- * @goal touch
- * 
- * @phase process-sources
- */
-public class MyMojo
-    extends AbstractMojo
-{
-    /**
-     * Location of the file.
-     * @parameter expression="${project.build.directory}"
-     * @required
-     */
-    private File outputDirectory;
-
-    public void execute()
-        throws MojoExecutionException
-    {
-        File f = outputDirectory;
-
-        if ( !f.exists() )
-        {
-            f.mkdirs();
-        }
-
-        File touch = new File( f, "touch.txt" );
-
-        FileWriter w = null;
-        try
-        {
-            w = new FileWriter( touch );
-
-            w.write( "touch.txt" );
-        }
-        catch ( IOException e )
-        {
-            throw new MojoExecutionException( "Error creating file " + touch, e );
-        }
-        finally
-        {
-            if ( w != null )
-            {
-                try
-                {
-                    w.close();
-                }
-                catch ( IOException e )
-                {
-                    // ignore
-                }
-            }
-        }
-    }
-}
diff --git a/maven-archetype-portlet/pom.xml b/maven-archetype-portlet/pom.xml
deleted file mode 100644
index bd20c81..0000000
--- a/maven-archetype-portlet/pom.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-  http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
--->
-
-<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">
-  <parent>
-    <artifactId>maven-archetype-bundles</artifactId>
-    <groupId>org.apache.maven.archetypes</groupId>
-    <version>3-SNAPSHOT</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <description>
-    An archetype which contains a sample JSR-268 Portlet.
-  </description>
-  <artifactId>maven-archetype-portlet</artifactId>
-  <name>Maven Portlet Archetype</name>
-  <version>1.0.1-SNAPSHOT</version>
-</project>
diff --git a/maven-archetype-portlet/src/main/resources/META-INF/archetype.xml b/maven-archetype-portlet/src/main/resources/META-INF/archetype.xml
deleted file mode 100644
index 15c7dff..0000000
--- a/maven-archetype-portlet/src/main/resources/META-INF/archetype.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<archetype>
-  <id>webapp</id>
-  <sources>
-    <source>src/main/java/MyPortlet.java</source>
-  </sources>
-  <resources>
-    <resource>src/main/jetspeed/web.xml</resource>
-    <resource>src/main/webapp/normal.jsp</resource>
-    <resource>src/main/webapp/maximized.jsp</resource>
-    <resource>src/main/webapp/help.jsp</resource>
-    <resource>src/main/webapp/WEB-INF/web.xml</resource>
-    <resource>src/main/webapp/WEB-INF/portlet.xml</resource>
-    <resource filtered="false">src/main/webapp/WEB-INF/tld/portlet.tld</resource>
-  </resources>
-</archetype>
diff --git a/maven-archetype-portlet/src/main/resources/archetype-resources/pom.xml b/maven-archetype-portlet/src/main/resources/archetype-resources/pom.xml
deleted file mode 100644
index 62f7067..0000000
--- a/maven-archetype-portlet/src/main/resources/archetype-resources/pom.xml
+++ /dev/null
@@ -1,45 +0,0 @@
-<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>Maven Portlet Archetype</name>
-  <url>http://maven.apache.org</url>
-  <profiles>
-      <profile>
-          <id>jetspeed</id>
-          <build>
-              <plugins>
-                  <plugin>
-                      <groupId>org.apache.maven.plugins</groupId>
-                      <artifactId>maven-war-plugin</artifactId>
-                      <version>2.0-beta-2</version>
-                      <configuration>
-                          <webXml>src/main/jetspeed/web.xml</webXml>
-                      </configuration>
-                  </plugin>
-              </plugins>
-          </build>
-      </profile>
-  </profiles>
-  <dependencies>
-      <dependency>
-          <groupId>portlet-api</groupId>
-          <artifactId>portlet-api</artifactId>
-          <version>1.0</version>
-          <scope>provided</scope>
-      </dependency>
-      <dependency>
-          <groupId>jstl</groupId>
-          <artifactId>jstl</artifactId>
-          <version>1.0.2</version>
-      </dependency>
-      <dependency>
-          <groupId>taglibs</groupId>
-          <artifactId>standard</artifactId>
-          <version>1.0.4</version>
-      </dependency>
-  </dependencies>
-</project>
diff --git a/maven-archetype-portlet/src/main/resources/archetype-resources/src/main/java/MyPortlet.java b/maven-archetype-portlet/src/main/resources/archetype-resources/src/main/java/MyPortlet.java
deleted file mode 100644
index 18b43ee..0000000
--- a/maven-archetype-portlet/src/main/resources/archetype-resources/src/main/java/MyPortlet.java
+++ /dev/null
@@ -1,73 +0,0 @@
-package $package;
-
-/*
- * Copyright 2001-2005 The Apache Software Foundation.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-import java.io.IOException;
-import javax.portlet.PortletConfig;
-import javax.portlet.GenericPortlet;
-import javax.portlet.PortletException;
-import javax.portlet.PortletRequestDispatcher;
-import javax.portlet.RenderRequest;
-import javax.portlet.RenderResponse;
-import javax.portlet.WindowState;
-
-public class MyPortlet extends GenericPortlet {
-
-    private static final String NORMAL_VIEW = "/normal.jsp";
-    private static final String MAXIMIZED_VIEW = "/maximized.jsp";
-    private static final String HELP_VIEW = "/help.jsp";
-
-    private PortletRequestDispatcher normalView;
-    private PortletRequestDispatcher maximizedView;
-    private PortletRequestDispatcher helpView;
-
-    public void doView( RenderRequest request, RenderResponse response )
-        throws PortletException, IOException {
-
-        if( WindowState.MINIMIZED.equals( request.getWindowState() ) ) {
-            return;
-        }
-
-        if ( WindowState.NORMAL.equals( request.getWindowState() ) ) {
-            normalView.include( request, response );
-        } else {
-            maximizedView.include( request, response );
-        }
-    }
-
-    protected void doHelp( RenderRequest request, RenderResponse response )
-        throws PortletException, IOException {
-
-        helpView.include( request, response );
-
-    }
-
-    public void init( PortletConfig config ) throws PortletException {
-        super.init( config );
-        normalView = config.getPortletContext().getRequestDispatcher( NORMAL_VIEW );
-        maximizedView = config.getPortletContext().getRequestDispatcher( MAXIMIZED_VIEW );
-        helpView = config.getPortletContext().getRequestDispatcher( HELP_VIEW );
-    }
-
-    public void destroy() {
-        normalView = null;
-        maximizedView = null;
-        helpView = null;
-        super.destroy();
-    }
-
-}
diff --git a/maven-archetype-portlet/src/main/resources/archetype-resources/src/main/jetspeed/web.xml b/maven-archetype-portlet/src/main/resources/archetype-resources/src/main/jetspeed/web.xml
deleted file mode 100644
index 7a3b7a6..0000000
--- a/maven-archetype-portlet/src/main/resources/archetype-resources/src/main/jetspeed/web.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!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>${artifactId} Wrapper</display-name>
-
-    <description>Generated Portlet Wrapper</description>
-
-    <servlet>
-        <servlet-name>${artifactId}</servlet-name>
-        <display-name>${artifactId} Portlet</display-name>
-        <description>Portlet for Jetspeed Fusion</description>
-        <servlet-class>org.apache.jetspeed.container.JetspeedContainerServlet</servlet-class>
-
-        <init-param>
-            <param-name>registerAtInit</param-name>
-            <param-value>1</param-value>
-        </init-param>
-
-        <init-param>
-            <param-name>portletApplication</param-name>
-            <param-value>${artifactId}</param-value>
-        </init-param>
-    </servlet>
-
-    <servlet-mapping>
-        <servlet-name>JetspeedContainer</servlet-name>
-        <url-pattern>/container/*</url-pattern>
-    </servlet-mapping>
-
-    <taglib>
-        <taglib-uri>http://java.sun.com/portlet</taglib-uri>
-        <taglib-location>/WEB-INF/tld/portlet.tld</taglib-location>
-    </taglib>
-</web-app>
diff --git a/maven-archetype-portlet/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/portlet.xml b/maven-archetype-portlet/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/portlet.xml
deleted file mode 100644
index bc639c2..0000000
--- a/maven-archetype-portlet/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/portlet.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<portlet-app
-    xmlns="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd"
-    version="1.0"
-    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd
-                        http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd">
-
-    <portlet>
-        <description>Write here a short description about your portlet.</description>
-        <portlet-name>${artifactId}</portlet-name>
-        <display-name>${artifactId} Portlet</display-name>
-
-        <portlet-class>${groupId}.${artifactId}</portlet-class>
-
-        <supports>
-            <mime-type>text/html</mime-type>
-            <portlet-mode>VIEW</portlet-mode>
-        </supports>
-
-        <supported-locale>en</supported-locale>
-
-        <portlet-info>
-            <title>Put the portlet title here</title>
-            <short-title>Portlet Short Title</short-title>
-            <keywords>put keywords here</keywords>
-        </portlet-info>
-    </portlet>
-</portlet-app>
diff --git a/maven-archetype-portlet/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/tld/portlet.tld b/maven-archetype-portlet/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/tld/portlet.tld
deleted file mode 100644
index b4af8ea..0000000
--- a/maven-archetype-portlet/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/tld/portlet.tld
+++ /dev/null
@@ -1,104 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1" ?>
-<!DOCTYPE taglib PUBLIC
-  "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN"
-  "http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd">
-<!-- 
-Copyright 2004 The Apache Software Foundation
-Licensed  under the  Apache License,  Version 2.0  (the "License");
-you may not use  this file  except in  compliance with the License.
-You may obtain a copy of the License at 
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed  under the  License is distributed on an "AS IS" BASIS,
-WITHOUT  WARRANTIES OR CONDITIONS  OF ANY KIND, either  express  or
-implied.
-
-See the License for the specific language governing permissions and
-limitations under the License.
--->
-<taglib>
-    <tlibversion>1.0</tlibversion>
-    <jspversion>1.1</jspversion>
-    <shortname>portlet</shortname>
-    <uri>http://java.sun.com/portlet</uri>
-    <tag>
-        <name>defineObjects</name>
-        <tagclass>org.apache.pluto.tags.DefineObjectsTag</tagclass>
-        <teiclass>org.apache.pluto.tags.DefineObjectsTag$TEI</teiclass>
-        <bodycontent>empty</bodycontent>
-    </tag>
-    <tag>
-        <name>param</name>
-        <tagclass>org.apache.pluto.tags.ParamTag</tagclass>
-        <bodycontent>empty</bodycontent>
-        <attribute>
-            <name>name</name>
-            <required>true</required>
-            <rtexprvalue>true</rtexprvalue>
-        </attribute>
-        <attribute>
-            <name>value</name>
-            <required>true</required>
-            <rtexprvalue>true</rtexprvalue>
-        </attribute>
-    </tag>
-    <tag>
-        <name>actionURL</name>
-        <tagclass>org.apache.pluto.tags.ActionURLTag</tagclass>
-        <teiclass>org.apache.pluto.tags.BasicURLTag$TEI</teiclass>
-        <bodycontent>JSP</bodycontent>
-        <attribute>
-            <name>windowState</name>
-            <required>false</required>
-            <rtexprvalue>true</rtexprvalue>
-        </attribute>
-        <attribute>
-            <name>portletMode</name>
-            <required>false</required>
-            <rtexprvalue>true</rtexprvalue>
-        </attribute>
-        <attribute>
-            <name>secure</name>
-            <required>false</required>
-            <rtexprvalue>true</rtexprvalue>
-        </attribute>
-        <attribute>
-            <name>var</name>
-            <required>false</required>
-            <rtexprvalue>true</rtexprvalue>
-        </attribute>
-    </tag>
-    <tag>
-        <name>renderURL</name>
-        <tagclass>org.apache.pluto.tags.RenderURLTag</tagclass>
-        <teiclass>org.apache.pluto.tags.BasicURLTag$TEI</teiclass>
-        <bodycontent>JSP</bodycontent>
-        <attribute>
-            <name>windowState</name>
-            <required>false</required>
-            <rtexprvalue>true</rtexprvalue>
-        </attribute>
-        <attribute>
-            <name>portletMode</name>
-            <required>false</required>
-            <rtexprvalue>true</rtexprvalue>
-        </attribute>
-        <attribute>
-            <name>secure</name>
-            <required>false</required>
-            <rtexprvalue>true</rtexprvalue>
-        </attribute>
-        <attribute>
-            <name>var</name>
-            <required>false</required>
-            <rtexprvalue>true</rtexprvalue>
-        </attribute>
-    </tag>
-    <tag>
-        <name>namespace</name>
-        <tagclass>org.apache.pluto.tags.NamespaceTag</tagclass>
-        <bodycontent>empty</bodycontent>
-    </tag>
-</taglib>
diff --git a/maven-archetype-portlet/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml b/maven-archetype-portlet/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml
deleted file mode 100644
index 2de9768..0000000
--- a/maven-archetype-portlet/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!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>FortunePortlet</display-name>
-
-    <description>Automated generated Application Wrapper</description>
-
-    <servlet>
-        <servlet-name>${artifactId}</servlet-name>
-        <display-name>${artifactId} Portlet</display-name>
-        <description>Generated Portlet Wrapper</description>
-        <servlet-class>org.apache.pluto.core.PortletServlet</servlet-class>
-
-        <init-param>
-            <param-name>portlet-class</param-name>
-            <param-value>${groupId}.${artifactId}</param-value>
-        </init-param>
-
-        <init-param>
-            <param-name>portlet-guid</param-name>
-            <param-value>yourportlet.${artifactId}</param-value>
-        </init-param>
-    </servlet>
-
-    <servlet-mapping>
-        <servlet-name>${artifactId}</servlet-name>
-        <url-pattern>/${artifactId}/*</url-pattern>
-    </servlet-mapping>
-
-    <taglib>
-        <taglib-uri>http://java.sun.com/portlet</taglib-uri>
-        <taglib-location>/WEB-INF/tld/portlet.tld</taglib-location>
-    </taglib>
-</web-app>
diff --git a/maven-archetype-portlet/src/main/resources/archetype-resources/src/main/webapp/help.jsp b/maven-archetype-portlet/src/main/resources/archetype-resources/src/main/webapp/help.jsp
deleted file mode 100644
index fa2eced..0000000
--- a/maven-archetype-portlet/src/main/resources/archetype-resources/src/main/webapp/help.jsp
+++ /dev/null
@@ -1,3 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
-
-<h4>Need help?</h4>
diff --git a/maven-archetype-portlet/src/main/resources/archetype-resources/src/main/webapp/maximized.jsp b/maven-archetype-portlet/src/main/resources/archetype-resources/src/main/webapp/maximized.jsp
deleted file mode 100644
index 9c216eb..0000000
--- a/maven-archetype-portlet/src/main/resources/archetype-resources/src/main/webapp/maximized.jsp
+++ /dev/null
@@ -1,3 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
-
-<h4>This is a much bigger world isn't it?</h4>
diff --git a/maven-archetype-portlet/src/main/resources/archetype-resources/src/main/webapp/normal.jsp b/maven-archetype-portlet/src/main/resources/archetype-resources/src/main/webapp/normal.jsp
deleted file mode 100644
index a074fcb..0000000
--- a/maven-archetype-portlet/src/main/resources/archetype-resources/src/main/webapp/normal.jsp
+++ /dev/null
@@ -1,3 +0,0 @@
-<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
-
-<h4>Welcome to the Maven 2 World!</h4>
diff --git a/maven-archetype-profiles/pom.xml b/maven-archetype-profiles/pom.xml
deleted file mode 100644
index 0e8a788..0000000
--- a/maven-archetype-profiles/pom.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-  http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
--->
-
-<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">
-  <parent>
-    <artifactId>maven-archetype-bundles</artifactId>
-    <groupId>org.apache.maven.archetypes</groupId>
-    <version>1</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <description>
-    An archetype which contains a sample Maven project which demonstrates the use of profiles.
-  </description>
-  <artifactId>maven-archetype-profiles</artifactId>
-  <name>Maven Profiles Archetype</name>
-  <version>1.0-SNAPSHOT</version>
-</project>
diff --git a/maven-archetype-profiles/src/main/resources/META-INF/archetype.xml b/maven-archetype-profiles/src/main/resources/META-INF/archetype.xml
deleted file mode 100644
index 68a36e4..0000000
--- a/maven-archetype-profiles/src/main/resources/META-INF/archetype.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<archetype>
-  <id>profiles</id>
-  <sources>
-    <source>src/main/java/App.java</source>
-  </sources>
-  <testSources>
-    <source>src/test/java/AppTest.java</source>
-  </testSources>
-</archetype>
diff --git a/maven-archetype-profiles/src/main/resources/archetype-resources/pom.xml b/maven-archetype-profiles/src/main/resources/archetype-resources/pom.xml
deleted file mode 100644
index 5dfaf8a..0000000
--- a/maven-archetype-profiles/src/main/resources/archetype-resources/pom.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<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>jar</packaging>
-  <version>${version}</version>
-  <name>Maven Quick Start Archetype</name>
-  <url>http://maven.apache.org</url>
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-</project>
diff --git a/maven-archetype-profiles/src/main/resources/archetype-resources/src/main/filters/development.properties b/maven-archetype-profiles/src/main/resources/archetype-resources/src/main/filters/development.properties
deleted file mode 100644
index 0dac23f..0000000
--- a/maven-archetype-profiles/src/main/resources/archetype-resources/src/main/filters/development.properties
+++ /dev/null
@@ -1 +0,0 @@
-environment=development
diff --git a/maven-archetype-profiles/src/main/resources/archetype-resources/src/main/filters/production.properties b/maven-archetype-profiles/src/main/resources/archetype-resources/src/main/filters/production.properties
deleted file mode 100644
index 4387f9c..0000000
--- a/maven-archetype-profiles/src/main/resources/archetype-resources/src/main/filters/production.properties
+++ /dev/null
@@ -1 +0,0 @@
-environment=production
diff --git a/maven-archetype-profiles/src/main/resources/archetype-resources/src/main/filters/qa.properties b/maven-archetype-profiles/src/main/resources/archetype-resources/src/main/filters/qa.properties
deleted file mode 100644
index 8b54f33..0000000
--- a/maven-archetype-profiles/src/main/resources/archetype-resources/src/main/filters/qa.properties
+++ /dev/null
@@ -1 +0,0 @@
-environment=qa
diff --git a/maven-archetype-profiles/src/main/resources/archetype-resources/src/main/java/App.java b/maven-archetype-profiles/src/main/resources/archetype-resources/src/main/java/App.java
deleted file mode 100644
index c09c3ce..0000000
--- a/maven-archetype-profiles/src/main/resources/archetype-resources/src/main/java/App.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package $package;
-
-/**
- * Hello world!
- *
- */
-public class App 
-{
-    public static void main( String[] args )
-    {
-        System.out.println( "Hello World!" );
-    }
-}
diff --git a/maven-archetype-profiles/src/main/resources/archetype-resources/src/test/java/AppTest.java b/maven-archetype-profiles/src/main/resources/archetype-resources/src/test/java/AppTest.java
deleted file mode 100644
index bd9bf4e..0000000
--- a/maven-archetype-profiles/src/main/resources/archetype-resources/src/test/java/AppTest.java
+++ /dev/null
@@ -1,38 +0,0 @@
-package $package;
-
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-/**
- * Unit test for simple App.
- */
-public class AppTest 
-    extends TestCase
-{
-    /**
-     * Create the test case
-     *
-     * @param testName name of the test case
-     */
-    public AppTest( String testName )
-    {
-        super( testName );
-    }
-
-    /**
-     * @return the suite of tests being tested
-     */
-    public static Test suite()
-    {
-        return new TestSuite( AppTest.class );
-    }
-
-    /**
-     * Rigourous Test :-)
-     */
-    public void testApp()
-    {
-        assertTrue( true );
-    }
-}
diff --git a/maven-archetype-quickstart/pom.xml b/maven-archetype-quickstart/pom.xml
deleted file mode 100644
index 5c31dfd..0000000
--- a/maven-archetype-quickstart/pom.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-  http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
--->
-
-<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">
-  <parent>
-    <artifactId>maven-archetype-bundles</artifactId>
-    <groupId>org.apache.maven.archetypes</groupId>
-    <version>3-SNAPSHOT</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <description>
-    An archetype which contains a sample Maven project.
-  </description>
-  <artifactId>maven-archetype-quickstart</artifactId>
-  <name>Maven Quickstart Archetype</name>
-  <version>1.1-SNAPSHOT</version>
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-    </dependency>
-  </dependencies>  
-</project>
diff --git a/maven-archetype-quickstart/src/main/resources/META-INF/archetype.xml b/maven-archetype-quickstart/src/main/resources/META-INF/archetype.xml
deleted file mode 100644
index 3e2f0e8..0000000
--- a/maven-archetype-quickstart/src/main/resources/META-INF/archetype.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<archetype>
-  <id>quickstart</id>
-  <sources>
-    <source>src/main/java/App.java</source>
-  </sources>
-  <testSources>
-    <source>src/test/java/AppTest.java</source>
-  </testSources>
-</archetype>
diff --git a/maven-archetype-quickstart/src/main/resources/archetype-resources/pom.xml b/maven-archetype-quickstart/src/main/resources/archetype-resources/pom.xml
deleted file mode 100644
index 5e7c313..0000000
--- a/maven-archetype-quickstart/src/main/resources/archetype-resources/pom.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<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>jar</packaging>
-  <version>${version}</version>
-  <name>${artifactId}</name>
-  <url>http://maven.apache.org</url>
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-</project>
diff --git a/maven-archetype-quickstart/src/main/resources/archetype-resources/src/main/java/App.java b/maven-archetype-quickstart/src/main/resources/archetype-resources/src/main/java/App.java
deleted file mode 100644
index c09c3ce..0000000
--- a/maven-archetype-quickstart/src/main/resources/archetype-resources/src/main/java/App.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package $package;
-
-/**
- * Hello world!
- *
- */
-public class App 
-{
-    public static void main( String[] args )
-    {
-        System.out.println( "Hello World!" );
-    }
-}
diff --git a/maven-archetype-quickstart/src/main/resources/archetype-resources/src/test/java/AppTest.java b/maven-archetype-quickstart/src/main/resources/archetype-resources/src/test/java/AppTest.java
deleted file mode 100644
index bd9bf4e..0000000
--- a/maven-archetype-quickstart/src/main/resources/archetype-resources/src/test/java/AppTest.java
+++ /dev/null
@@ -1,38 +0,0 @@
-package $package;
-
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-/**
- * Unit test for simple App.
- */
-public class AppTest 
-    extends TestCase
-{
-    /**
-     * Create the test case
-     *
-     * @param testName name of the test case
-     */
-    public AppTest( String testName )
-    {
-        super( testName );
-    }
-
-    /**
-     * @return the suite of tests being tested
-     */
-    public static Test suite()
-    {
-        return new TestSuite( AppTest.class );
-    }
-
-    /**
-     * Rigourous Test :-)
-     */
-    public void testApp()
-    {
-        assertTrue( true );
-    }
-}
diff --git a/maven-archetype-simple/pom.xml b/maven-archetype-simple/pom.xml
deleted file mode 100644
index ab61b5f..0000000
--- a/maven-archetype-simple/pom.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-  http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
--->
-
-<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">
-  <parent>
-    <artifactId>maven-archetype-bundles</artifactId>
-    <groupId>org.apache.maven.archetypes</groupId>
-    <version>3-SNAPSHOT</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <description>
-    An archetype which contains a simple Maven project.
-  </description>
-  <artifactId>maven-archetype-simple</artifactId>
-  <name>Maven Simple Project Archetype</name>
-  <version>1.1-SNAPSHOT</version>
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-    </dependency>
-  </dependencies>
-</project>
diff --git a/maven-archetype-simple/src/main/archetype/archetype.properties b/maven-archetype-simple/src/main/archetype/archetype.properties
deleted file mode 100644
index 82f9521..0000000
--- a/maven-archetype-simple/src/main/archetype/archetype.properties
+++ /dev/null
@@ -1 +0,0 @@
-package=archetype
diff --git a/maven-archetype-simple/src/main/java/archetype/App.java b/maven-archetype-simple/src/main/java/archetype/App.java
deleted file mode 100644
index 8f6ce0d..0000000
--- a/maven-archetype-simple/src/main/java/archetype/App.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package archetype;
-
-/**
- * Hello world!
- *
- */
-public class App 
-{
-    public static void main( String[] args )
-    {
-        System.out.println( "Hello World!" );
-    }
-}
diff --git a/maven-archetype-simple/src/main/resources/app.properties b/maven-archetype-simple/src/main/resources/app.properties
deleted file mode 100644
index 0cc05aa..0000000
--- a/maven-archetype-simple/src/main/resources/app.properties
+++ /dev/null
@@ -1 +0,0 @@
-app=Coolio
diff --git a/maven-archetype-simple/src/test/java/archetype/AppTest.java b/maven-archetype-simple/src/test/java/archetype/AppTest.java
deleted file mode 100644
index 17dabaf..0000000
--- a/maven-archetype-simple/src/test/java/archetype/AppTest.java
+++ /dev/null
@@ -1,38 +0,0 @@
-package archetype;
-
-import junit.framework.Test;
-import junit.framework.TestCase;
-import junit.framework.TestSuite;
-
-/**
- * Unit test for simple App.
- */
-public class AppTest 
-    extends TestCase
-{
-    /**
-     * Create the test case
-     *
-     * @param testName name of the test case
-     */
-    public AppTest( String testName )
-    {
-        super( testName );
-    }
-
-    /**
-     * @return the suite of tests being tested
-     */
-    public static Test suite()
-    {
-        return new TestSuite( AppTest.class );
-    }
-
-    /**
-     * Rigourous Test :-)
-     */
-    public void testApp()
-    {
-        assertTrue( true );
-    }
-}
diff --git a/maven-archetype-simple/src/test/resources/test.properties b/maven-archetype-simple/src/test/resources/test.properties
deleted file mode 100644
index 74d0a43..0000000
--- a/maven-archetype-simple/src/test/resources/test.properties
+++ /dev/null
@@ -1 +0,0 @@
-foo=bar
diff --git a/maven-archetype-site-simple/pom.xml b/maven-archetype-site-simple/pom.xml
deleted file mode 100644
index c6f1187..0000000
--- a/maven-archetype-site-simple/pom.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-  http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
--->
-
-<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">
-  <parent>
-    <artifactId>maven-archetype-bundles</artifactId>
-    <groupId>org.apache.maven.archetypes</groupId>
-    <version>3-SNAPSHOT</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <description>
-    An archetype which contains a sample Maven site.
-  </description>
-  <artifactId>maven-archetype-site-simple</artifactId>
-  <name>Maven Archetype for Simple Site</name>
-  <version>1.1-SNAPSHOT</version>
-</project>
diff --git a/maven-archetype-site-simple/src/main/resources/META-INF/archetype.xml b/maven-archetype-site-simple/src/main/resources/META-INF/archetype.xml
deleted file mode 100644
index c70b046..0000000
--- a/maven-archetype-site-simple/src/main/resources/META-INF/archetype.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<archetype>
-  <id>plugin</id>
-  <allowPartial>true</allowPartial>
-  <siteResources>
-    <resource>src/site/site.xml</resource>
-    <resource>src/site/apt/index.apt</resource>
-  </siteResources>
-</archetype>
diff --git a/maven-archetype-site-simple/src/main/resources/archetype-resources/pom.xml b/maven-archetype-site-simple/src/main/resources/archetype-resources/pom.xml
deleted file mode 100644
index f5f8f4d..0000000
--- a/maven-archetype-site-simple/src/main/resources/archetype-resources/pom.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-<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>
-  <version>${version}</version>
-  <packaging>pom</packaging>
-  <distributionManagement>
-    <site>
-      <id>website</id>
-      <url>scp://webhost.company.com/www/website</url>
-    </site>
-  </distributionManagement>
-</project>
diff --git a/maven-archetype-site-simple/src/main/resources/archetype-resources/src/site/apt/index.apt b/maven-archetype-site-simple/src/main/resources/archetype-resources/src/site/apt/index.apt
deleted file mode 100644
index 31b6246..0000000
--- a/maven-archetype-site-simple/src/main/resources/archetype-resources/src/site/apt/index.apt
+++ /dev/null
@@ -1,18 +0,0 @@
- -----
- Title Here
- -----
- Author Here
- -----
- Date Here
- -----
-
-Maven Site for your project
-
- Congratulations! If you are looking at this page then you have successfully generated a
- template site employing the site archetype and you have run:
-  
-+-----+
-
-mvn site
-
-+-----+
diff --git a/maven-archetype-site-simple/src/main/resources/archetype-resources/src/site/site.xml b/maven-archetype-site-simple/src/main/resources/archetype-resources/src/site/site.xml
deleted file mode 100644
index a155425..0000000
--- a/maven-archetype-site-simple/src/main/resources/archetype-resources/src/site/site.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<project>
-  <body>
-    <links>
-      <item name="Maven" href="http://maven.apache.org/"/>
-    </links>
-
-    <menu name="Documentation">
-      <!--<item name="Xdoc Example" href="xdoc.html"/>-->
-    </menu>
-  </body>
-</project>
diff --git a/maven-archetype-site/pom.xml b/maven-archetype-site/pom.xml
deleted file mode 100644
index 7a7ebcd..0000000
--- a/maven-archetype-site/pom.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-  http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
--->
-
-<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">
-  <parent>
-    <artifactId>maven-archetype-bundles</artifactId>
-    <groupId>org.apache.maven.archetypes</groupId>
-    <version>3-SNAPSHOT</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <description>
-    An archetype which contains a sample Maven site which demonstrates some of the supported document types like
-    APT, XDoc, and FML and demonstrates how to i18n your site. This archetype can be layered 
-    upon an existing Maven project. 
-  </description>  
-  <artifactId>maven-archetype-site</artifactId>
-  <version>1.1-SNAPSHOT</version>
-  <name>Maven Site Archetype</name>
-</project>
diff --git a/maven-archetype-site/src/main/resources/META-INF/archetype.xml b/maven-archetype-site/src/main/resources/META-INF/archetype.xml
deleted file mode 100644
index 957e4b4..0000000
--- a/maven-archetype-site/src/main/resources/META-INF/archetype.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<archetype>
-  <id>plugin</id>
-  <allowPartial>true</allowPartial>
-  <siteResources>
-    <resource>src/site/site.xml</resource>
-    <resource>src/site/site_fr.xml</resource>
-    <resource>src/site/apt/index.apt</resource>
-    <resource>src/site/apt/format.apt</resource>    
-    <resource>src/site/fml/faq.fml</resource>
-    <resource>src/site/xdoc/xdoc.xml</resource>    
-    <resource>src/site/fr/apt/index.apt</resource>
-    <resource>src/site/fr/apt/format.apt</resource>    
-    <resource>src/site/fr/fml/faq.fml</resource>
-    <resource>src/site/fr/xdoc/xdoc.xml</resource>    
-  </siteResources>
-</archetype>
diff --git a/maven-archetype-site/src/main/resources/archetype-resources/pom.xml b/maven-archetype-site/src/main/resources/archetype-resources/pom.xml
deleted file mode 100644
index 07a1c28..0000000
--- a/maven-archetype-site/src/main/resources/archetype-resources/pom.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<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>
-  <version>${version}</version>
-  <name>Maven</name>
-  <url>http://maven.apache.org/maven2</url>
-  <inceptionYear>2001</inceptionYear>
-  <distributionManagement>
-    <site>
-      <id>website</id>
-      <url>scp://webhost.company.com/www/website</url>
-    </site>
-  </distributionManagement>
-  <build>
-    <plugins>
-      <plugin>
-        <artifactId>maven-site-plugin</artifactId>
-        <configuration>
-          <locales>en,fr</locales>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
-</project>
diff --git a/maven-archetype-site/src/main/resources/archetype-resources/src/site/apt/format.apt b/maven-archetype-site/src/main/resources/archetype-resources/src/site/apt/format.apt
deleted file mode 100644
index c38d142..0000000
--- a/maven-archetype-site/src/main/resources/archetype-resources/src/site/apt/format.apt
+++ /dev/null
@@ -1,596 +0,0 @@
-
-The APT format
-~~~~~~~~~~~~~~
-
-  In the following section, boxes containing text in typewriter-like font are
-  examples of APT source.
-
-* Document structure
-~~~~~~~~~~~~~~~~~~~~
-
-  A short APT document is contained in a single text file. A longer document
-  may be contained in a ordered list of text files. For instance, first text
-  file contains section 1, second text file contains section 2, and so on.
-
-      [Note:] Splitting the APT document in several text files on a section
-              boundary is not mandatory. The split may occur anywhere.
-              However doing so is recommended because a text file containing a
-              section is by itself a valid APT document.
-
-  A file contains a sequence of paragraphs and ``displays'' (non paragraphs
-  such as tables) separated by open lines.
-
-  A paragraph is simply a sequence of consecutive text lines.
-
-+------------------------------------------------------------------------+
-  First line of first paragraph.
-  Second line of first paragraph.
-  Third line of first paragraph.
-  
-  Line 1 of paragraph 2 (separated from first paragraph by an open line).
-  Line 2 of paragraph 2.
-+------------------------------------------------------------------------+
-
-  The indentation of the first line of a paragraph is the main method used by
-  an APT processor to recognize the type of the paragraph. For example, a
-  section title must not be indented at all.
-
-  A ``plain'' paragraph must be indented by a certain amount of space. For
-  example, a plain paragraph which is not contained in a list may be indented
-  by two spaces.
-
-+-------------------------------------------------+
-My section title (not indented).
-
-  My paragraph first line (indented by 2 spaces).
-+-------------------------------------------------+
-
-  Indentation is not rigid. Any amount of space will do. You don't even need
-  to use a consistent indentation all over your document. What really matters
-  for an APT processor is whether the paragraph is not indented at all or,
-  when inside a list, whether a paragraph is more or less indented than the
-  first item of the list (more about this later).
-
-+-------------------------------------------------------+
-    First paragraph has its first line indented by four
-spaces. Then the author did even bother to indent the
-other lines of the paragraph.
-
-  Second paragraph contains several lines which are all 
-  indented by two spaces. This style is much nicer than 
-  the one used for the previous paragraph.
-+-------------------------------------------------------+
-
-  Note that tabs are expanded with a tab width set to 8.
-
-* Document elements
-~~~~~~~~~~~~~~~~~~~
-
-** Block level elements
-~~~~~~~~~~~~~~~~~~~~~~~
-
-*** Title
-~~~~~~~~~~
-
-  A title is optional. If used, it must appear as the first block of the
-  document.
-
-+----------------------------------------------------------------------------+
-				    ------
-				    Title
-				    ------
-				    Author
-				    ------
-				     Date
-+----------------------------------------------------------------------------+
-
-  A title block is indented (centering it is nicer). It begins with a line
-  containing at least 3 dashes (<<<--->>>).
-
-  After the first <<<--->>> line, one or several consecutive lines of text
-  (implicit line break after each line) specify the title of the document.
-
-  This text may immediately be followed by another <<<--->>> line and one or
-  several consecutive lines of text which specifies the author of the
-  document.
-
-  The author sub-block may optionaly be followed by a date sub-block using the
-  same syntax.
-
-  The following example is used for a document with an title and a date but
-  with no declared author.
-
-+----------------------------------------------------------------------------+
-				    ------
-				    Title
-				    ------
-				    ------
-				     Date
-				    ------
-+----------------------------------------------------------------------------+
-
-  The last line is ignored. It is just there to make the block nicer.
-
-*** Paragraph
-~~~~~~~~~~~~~
-
-  Paragraphs other than the title block may appear before the first section.
-
-+----------------------+
-  Paragraph 1, line 1.
-  Paragraph 1, line 2.
-
-  Paragraph 2, line 1.
-  Paragraph 2, line 2.
-+----------------------+
-
-  Paragraphs are indented. They have already been described in the {{document
-  structure}} section.
-
-*** Section
-~~~~~~~~~~~
-
-  Sections are created by inserting section titles into the document. Simple
-  documents need not contain sections.
-
-+-----------------------------------+
-Section title
-
-* Sub-section title
-
-** Sub-sub-section title
-
-*** Sub-sub-sub-section title
-
-**** Sub-sub-sub-sub-section title
-+-----------------------------------+
-
-  Section titles are not indented. A sub-section title begins with one
-  asterisk (<<<*>>>), a sub-sub-section title begins with two asterisks
-  (<<<**>>>), and so forth up to four sub-section levels.
-
-*** List
-~~~~~~~~
-
-+---------------------------------------+
-      * List item 1.
-
-      * List item 2.
-
-	Paragraph contained in list item 2.
-
-	    * Sub-list item 1.
-
-	    * Sub-list item 2.
-
-      * List item 3.
-+---------------------------------------+
-
-  List items are indented and begin with a asterisk (<<<*>>>). 
-
-  Plain paragraphs more indented than the first list item are nested in that
-  list. Displays such as tables (not indented) are always nested in the
-  current list.
-
-  To nest a list inside a list, indent its first item more than its parent
-  list. To end a list, add a paragraph or list item less indented than the
-  current list.
-
-  Section titles always end a list. Displays cannot end a list but the
-  <<<[]>>> pseudo-element may be used to force the end of a list.
-
-+------------------------------------+
-      * List item 3.
-        Force end of list:
-
-      []
-
---------------------------------------------
-Verbatim text not contained in list item 3
---------------------------------------------
-+------------------------------------+
-
-  In the previous example, without the <<<[]>>>, the verbatim text (not
-  indented as all displays) would have been contained in list item 3.
-
-  A single <<<[]>>> may be used to end several nested lists at the same
-  time. The indentation of <<<[]>>> may be used to specify exactly which
-  lists should be ended. Example:
-
-+------------------------------------+
-      * List item 1.
-
-      * List item 2.
-
-	    * Sub-list item 1.
-
-	    * Sub-list item 2.
-
-	    []
-
--------------------------------------------------------------------
-Verbatim text contained in list item 2, but not in sub-list item 2
--------------------------------------------------------------------
-+------------------------------------+
-
-  There are three kind of lists, the bulleted lists we have already described,
-  the numbered lists and the definition lists.
-
-+-----------------------------------------+
-      [[1]] Numbered item 1.
-
-                [[A]] Numbered item A.
-
-                [[B]] Numbered item B.
-
-      [[2]] Numbered item 2.
-+-----------------------------------------+
-
-  A numbered list item begins with a label beetween two square brackets. The
-  label of the first item establishes the numbering scheme for the whole list:
-
-      [<<<[[1\]\]>>>] Decimal numbering: 1, 2, 3, 4, etc.
-
-      [<<<[[a\]\]>>>] Lower-alpha numbering: a, b, c, d, etc.
-
-      [<<<[[A\]\]>>>] Upper-alpha numbering: A, B, C, D, etc.
-
-      [<<<[[i\]\]>>>] Lower-roman numbering: i, ii, iii, iv, etc.
-
-      [<<<[[I\]\]>>>] Upper-roman numbering: I, II, III, IV, etc.
-
-  The labels of the items other than the first one are ignored. It is
-  recommended to take the time to type the correct label for each item in
-  order to keep the APT source document readable.
-
-+-------------------------------------------+
-      [Defined term 1] of definition list 2.
-
-      [Defined term 2] of definition list 2.
-+-------------------------------------------+
-
-  A definition list item begins with a defined term: text between square
-  brackets.
-
-*** Verbatim text
-~~~~~~~~~~~~~~~~~
-
-+----------------------------------------+
-----------------------------------------
-Verbatim 
-	 text,
-		preformatted,
-				escaped.
-----------------------------------------
-+----------------------------------------+
-
-  A verbatim block is not indented. It begins with a non indented line
-  containing at least 3 dashes (<<<--->>>). It ends with a similar line.
-
-  <<<+-->>> instead of <<<--->>> draws a box around verbatim text.
-
-  Like in HTML, verbatim text is preformatted. Unlike HTML, verbatim text is
-  escaped: inside a verbatim display, markup is not interpreted by the APT
-  processor.
-
-*** Figure
-~~~~~~~~~~
-
-+---------------------------+
-[Figure name] Figure caption
-+---------------------------+
-
-  A figure block is not indented. It begins with the figure name between
-  square brackets. The figure name is optionally followed by some text: the
-  figure caption.
-
-  The figure name is the pathname of the file containing the figure but
-  without an extension. Example: if your figure is contained in
-  <<</home/joe/docs/mylogo.jpeg>>>, the figure name is
-  <<</home/joe/docs/mylogo>>>.
-
-  If the figure name comes from a relative pathname (recommended practice)
-  rather than from an absolute pathname, this relative pathname is taken to be
-  relative to the directory of the current APT document (a la HTML)
-  rather than relative to the current working directory.
-
-  Why not leave the file extension in the figure name? This is better
-  explained by an example. You need to convert an APT document to PostScript
-  and your figure name is <<</home/joe/docs/mylogo>>>. A APT processor will
-  first try to load <<</home/joe/docs/mylogo.eps>>>. When the desired format
-  is not found, a APT processor tries to convert one of the existing
-  formats. In our example, the APT processor tries to convert
-  <<</home/joe/docs/mylogo.jpeg>>> to encapsulated PostScript.
-
-*** Table
-~~~~~~~~~
-
-  A table block is not indented. It begins with a non indented line containing
-  an asterisk and at least 2 dashes (<<<*-->>>). It ends with a
-  similar line.
-
-  The first line is not only used to recognize a table but also to specify
-  column justification. In the following example, 
-
-      * the second asterisk (<<<*>>>) is used to specify that column 1 is
-        centered,
-
-      * the plus sign (<<<+>>>) specifies that column 2 is left aligned, 
-
-      * the colon (<<<:>>>) specifies that column 3 is right aligned.
-
-      []
-
-+---------------------------------------------+
-*----------*--------------+----------------:
-| Centered | Left-aligned | Right-aligned  |
-| cell 1,1 | cell 1,2     | cell 1,3       |
-*----------*--------------+----------------:
-| cell 2,1 | cell 2,2     | cell 2,3       |
-*----------*--------------+----------------:
-Table caption
-+---------------------------------------------+
-
-  Rows are separated by a non indented line beginning with <<<*-->>>.
-
-  An optional table caption (non indented text) may immediately follow the
-  table.
-
-  Rows may contain single line or multiple line cells. Each line of cell text
-  is separated from the adjacent cell by the pipe character (<<<|>>>).
-  (<<<|>>> may be used in the cell text if quoted: <<<\\|>>>.)
-
-  The last <<<|>>> is only used to make the table nicer.  The first <<<|>>> is
-  not only used to make the table nicer, but also to specify that a grid is to
-  be drawn around table cells.
-
-  The following example shows a simple table with no grid and no caption.
-
-+---------------+
-*-----*------*
- cell | cell
-*-----*------*
- cell | cell
-*-----*------*
-+---------------+
-
-*** Horizontal rule
-~~~~~~~~~~~~~~~~~~~
-
-+---------------------+
-=====================
-+---------------------+
-
-  A non indented line containing at least 3 equal signs (<<<===>>>).
-
-*** Page break
-~~~~~~~~~~~~~~
-
-+---+
-^L
-+---+
-
-  A non indented line containing a single form feed character (Control-L).
-
-** Text level elements
-~~~~~~~~~~~~~~~~~~~~~~
-
-*** Font
-~~~~~~~~
-
-+-----------------------------------------------------+
-  <Italic> font. <<Bold>> font. <<<Monospaced>>> font.
-+-----------------------------------------------------+
-
-  Text between \< and > must be rendered in italic. Text between \<\< and >>
-  must be rendered in bold. Text between \<\<\< and >>> must be rendered using
-  a monospaced, typewriter-like font.
-
-  Font elements may appear anywhere except inside other font elements.
-
-  It is not recommended to use font elements inside titles, section titles,
-  links and defined terms because a APT processor automatically applies
-  appropriate font styles to these elements.
-
-*** Anchor and link
-~~~~~~~~~~~~~~~~~~~
-
-+-----------------------------------------------------------------+
-  {Anchor}. Link to {{anchor}}. Link to {{http://www.pixware.fr}}. 
-  Link to {{{anchor}showing alternate text}}.
-  Link to {{{http://www.pixware.fr}Pixware home page}}.
-+-----------------------------------------------------------------+
-
-  Text between curly braces (<<<\{}>>>) specifies an anchor. Text between
-  double curly braces (<<<\{\{}}>>>) specifies a link.
-
-  It is an error to create a link element that does not refer to an anchor of
-  the same name. The name of an anchor/link is its text with all non
-  alphanumeric characters stripped.
-
-  This rule does not apply to links to <external> anchors. Text beginning
-  with <<<http:/>>>, <<<https:/>>>, <<<ftp:/>>>, <<<file:/>>>, <<<mailto:>>>,
-  <<<../>>>, <<<./>>> (<<<..\\>>> and <<<.\\>>> on Windows) is recognized as
-  an external anchor name.
-
-  When the construct <<\{\{\{>><name><<}>><text><<}}>> is used, the link text
-  <text> may differ from the link name <name>.
-
-  Anchor/link elements may appear anywhere except inside other anchor/link
-  elements.
-
-  Section titles are implicitly defined anchors.
-
-*** Line break
-~~~~~~~~~~~~~~
-
-+-------------+
-  Force line\
-  break.
-+-------------+
-
-  A backslash character (<<<\\>>>) followed by a newline character.
-
-  Line breaks must not be used inside titles and tables (which are line
-  oriented blocks with implicit line breaks).
-
-*** Non breaking space
-~~~~~~~~~~~~~~~~~~~~~~
-
-+----------------------+
-  Non\ breaking\ space.
-+----------------------+
-
-  A backslash character (<<<\\>>>) followed by a space character.
-
-*** Special character
-~~~~~~~~~~~~~~~~~~~~~
-
-+---------------------------------------------------------------------------+
-  Escaped special characters: \~, \=, \-, \+, \*, \[, \], \<, \>, \{, \}, \\.
-+---------------------------------------------------------------------------+
-
-  In certain contexts, these characters have a special meaning and therefore
-  must be escaped if needed as is. They are escaped by adding a backslash in
-  front of them. The backslash may itself be escaped by adding another
-  backslash in front of it.
-
-  Note that an asterisk, for example, needs to be escaped only if its begins a
-  paragraph. (<<<*>>> has no special meaning in the middle of a paragraph.)
-
-+--------------------------------------+
-  Copyright symbol: \251, \xA9, \u00a9.
-+--------------------------------------+
-
-  Latin-1 characters (whatever is the encoding of the APT document) may be
-  specified by their codes using a backslash followed by one to three octal
-  digits or by using the <<<\x>>><NN> notation, where <NN> are two hexadecimal
-  digits.
-
-  Unicode characters may be specified by their codes using the <<<\u>>><NNNN>
-  notation, where <NNNN> are four hexadecimal digits.
-
-*** Comment
-~~~~~~~~~~~
-
-+---------------+
-~~Commented out.
-+---------------+
-
-  Text found after two tildes (<<<\~~>>>) is ignored up to the end of line.
-
-  A line of <<<~>>> is often used to ``underline'' section titles in order to
-  make them stand out of other paragraphs.
-
-
-* The APT format at a glance
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-------------------------------------------------------------------------------
-				    ------
-				    Title
-				    ------
-				    Author
-				    ------
-				     Date
-
-  Paragraph 1, line 1.
-  Paragraph 1, line 2.
-
-  Paragraph 2, line 1.
-  Paragraph 2, line 2.
-
-Section title
-
-* Sub-section title
-
-** Sub-sub-section title
-
-*** Sub-sub-sub-section title
-
-**** Sub-sub-sub-sub-section title
-
-      * List item 1.
-
-      * List item 2.
-
-	Paragraph contained in list item 2.
-
-	    * Sub-list item 1.
-
-	    * Sub-list item 2.
-
-      * List item 3.
-        Force end of list:
-
-      []
-
-+------------------------------------------+
-Verbatim text not contained in list item 3
-+------------------------------------------+
-
-      [[1]] Numbered item 1.
-
-                [[A]] Numbered item A.
-
-                [[B]] Numbered item B.
-
-      [[2]] Numbered item 2.
-
-  List numbering schemes: [[1]], [[a]], [[A]], [[i]], [[I]].
-
-      [Defined term 1] of definition list.
-
-      [Defined term 2] of definition list.
-
-+-------------------------------+
-Verbatim text
-			in a box	
-+-------------------------------+
-
-  --- instead of +-- suppresses the box around verbatim text.
-
-[Figure name] Figure caption
-
-*----------*--------------+----------------:
-| Centered | Left-aligned | Right-aligned  |
-| cell 1,1 | cell 1,2     | cell 1,3       |
-*----------*--------------+----------------:
-| cell 2,1 | cell 2,2     | cell 2,3       |
-*----------*--------------+----------------:
-Table caption
-
-  No grid, no caption:
-
-*-----*------*
- cell | cell
-*-----*------*
- cell | cell
-*-----*------*
-
-  Horizontal line:
-
-=======================================================================
-
-^L
-  New page.
-
-  <Italic> font. <<Bold>> font. <<<Monospaced>>> font.
-
-  {Anchor}. Link to {{anchor}}. Link to {{http://www.pixware.fr}}. 
-  Link to {{{anchor}showing alternate text}}.
-  Link to {{{http://www.pixware.fr}Pixware home page}}.
-
-  Force line\
-  break.
-
-  Non\ breaking\ space.
-
-  Escaped special characters: \~, \=, \-, \+, \*, \[, \], \<, \>, \{, \}, \\.
-
-  Copyright symbol: \251, \xA9, \u00a9.
-
-~~Commented out.
-
-------------------------------------------------------------------------------
-
diff --git a/maven-archetype-site/src/main/resources/archetype-resources/src/site/apt/index.apt b/maven-archetype-site/src/main/resources/archetype-resources/src/site/apt/index.apt
deleted file mode 100644
index 714043c..0000000
--- a/maven-archetype-site/src/main/resources/archetype-resources/src/site/apt/index.apt
+++ /dev/null
@@ -1,16 +0,0 @@
- -----
- The Site
- -----
- The Maven Team
- -----
-
-Maven Site for your project
-
- Congratulations! If you are looking at this page then you have successfully generated a
- template site employing the site archetype and you have run:
-  
-+-----+
-
-m2 site:site
-
-+-----+
diff --git a/maven-archetype-site/src/main/resources/archetype-resources/src/site/fml/faq.fml b/maven-archetype-site/src/main/resources/archetype-resources/src/site/fml/faq.fml
deleted file mode 100644
index 9eb48e0..0000000
--- a/maven-archetype-site/src/main/resources/archetype-resources/src/site/fml/faq.fml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0"?>
-<faqs id="General FAQ">
-  <part id="General">
-    <faq id="where">
-      <question>Where did Maven come from?</question>
-      <answer>
-        <p>
-          Maven was created by a group of software developers who were tired
-          of wasting their time fiddling around with builds and wanted to get
-          down to brass tacks and actually develop software!
-        </p>
-      </answer>
-    </faq>
-    <faq id="why">
-      <question>Why is maven so wildly popular?</question>
-      <answer>
-        <p>
-          Maven saves you so much time in your software development efforts that
-          you will have time to learn a second language, relax ten hours a
-          day, and train for that marathon you've always wanted to run!
-        </p>
-      </answer>
-    </faq>
-  </part>
-</faqs>
diff --git a/maven-archetype-site/src/main/resources/archetype-resources/src/site/fr/apt/format.apt b/maven-archetype-site/src/main/resources/archetype-resources/src/site/fr/apt/format.apt
deleted file mode 100644
index f67c329..0000000
--- a/maven-archetype-site/src/main/resources/archetype-resources/src/site/fr/apt/format.apt
+++ /dev/null
@@ -1,596 +0,0 @@
-
-Le format APT
-~~~~~~~~~~~~~
-
-   Dans la section suivante, les boîtes contenant du texte dans la police
-   de type machine à écrire sont des exemples de source APT.
-
-* Structure du document
-~~~~~~~~~~~~~~~~~~~~~~~
-
-  A short APT document is contained in a single text file. A longer document
-  may be contained in a ordered list of text files. For instance, first text
-  file contains section 1, second text file contains section 2, and so on.
-
-      [Note:] Splitting the APT document in several text files on a section
-              boundary is not mandatory. The split may occur anywhere.
-              However doing so is recommended because a text file containing a
-              section is by itself a valid APT document.
-
-  A file contains a sequence of paragraphs and ``displays'' (non paragraphs
-  such as tables) separated by open lines.
-
-  A paragraph is simply a sequence of consecutive text lines.
-
-+------------------------------------------------------------------------+
-  First line of first paragraph.
-  Second line of first paragraph.
-  Third line of first paragraph.
-  
-  Line 1 of paragraph 2 (separated from first paragraph by an open line).
-  Line 2 of paragraph 2.
-+------------------------------------------------------------------------+
-
-  The indentation of the first line of a paragraph is the main method used by
-  an APT processor to recognize the type of the paragraph. For example, a
-  section title must not be indented at all.
-
-  A ``plain'' paragraph must be indented by a certain amount of space. For
-  example, a plain paragraph which is not contained in a list may be indented
-  by two spaces.
-
-+-------------------------------------------------+
-My section title (not indented).
-
-  My paragraph first line (indented by 2 spaces).
-+-------------------------------------------------+
-
-  Indentation is not rigid. Any amount of space will do. You don't even need
-  to use a consistent indentation all over your document. What really matters
-  for an APT processor is whether the paragraph is not indented at all or,
-  when inside a list, whether a paragraph is more or less indented than the
-  first item of the list (more about this later).
-
-+-------------------------------------------------------+
-    First paragraph has its first line indented by four
-spaces. Then the author did even bother to indent the
-other lines of the paragraph.
-
-  Second paragraph contains several lines which are all 
-  indented by two spaces. This style is much nicer than 
-  the one used for the previous paragraph.
-+-------------------------------------------------------+
-
-  Note that tabs are expanded with a tab width set to 8.
-
-* Document elements
-~~~~~~~~~~~~~~~~~~~
-
-** Block level elements
-~~~~~~~~~~~~~~~~~~~~~~~
-
-*** Title
-~~~~~~~~~~
-
-  A title is optional. If used, it must appear as the first block of the
-  document.
-
-+----------------------------------------------------------------------------+
-				    ------
-				    Title
-				    ------
-				    Author
-				    ------
-				     Date
-+----------------------------------------------------------------------------+
-
-  A title block is indented (centering it is nicer). It begins with a line
-  containing at least 3 dashes (<<<--->>>).
-
-  After the first <<<--->>> line, one or several consecutive lines of text
-  (implicit line break after each line) specify the title of the document.
-
-  This text may immediately be followed by another <<<--->>> line and one or
-  several consecutive lines of text which specifies the author of the
-  document.
-
-  The author sub-block may optionaly be followed by a date sub-block using the
-  same syntax.
-
-  The following example is used for a document with an title and a date but
-  with no declared author.
-
-+----------------------------------------------------------------------------+
-				    ------
-				    Title
-				    ------
-				    ------
-				     Date
-				    ------
-+----------------------------------------------------------------------------+
-
-  The last line is ignored. It is just there to make the block nicer.
-
-*** Paragraph
-~~~~~~~~~~~~~
-
-  Paragraphs other than the title block may appear before the first section.
-
-+----------------------+
-  Paragraph 1, line 1.
-  Paragraph 1, line 2.
-
-  Paragraph 2, line 1.
-  Paragraph 2, line 2.
-+----------------------+
-
-  Paragraphs are indented. They have already been described in the {{document
-  structure}} section.
-
-*** Section
-~~~~~~~~~~~
-
-  Sections are created by inserting section titles into the document. Simple
-  documents need not contain sections.
-
-+-----------------------------------+
-Section title
-
-* Sub-section title
-
-** Sub-sub-section title
-
-*** Sub-sub-sub-section title
-
-**** Sub-sub-sub-sub-section title
-+-----------------------------------+
-
-  Section titles are not indented. A sub-section title begins with one
-  asterisk (<<<*>>>), a sub-sub-section title begins with two asterisks
-  (<<<**>>>), and so forth up to four sub-section levels.
-
-*** List
-~~~~~~~~
-
-+---------------------------------------+
-      * List item 1.
-
-      * List item 2.
-
-	Paragraph contained in list item 2.
-
-	    * Sub-list item 1.
-
-	    * Sub-list item 2.
-
-      * List item 3.
-+---------------------------------------+
-
-  List items are indented and begin with a asterisk (<<<*>>>). 
-
-  Plain paragraphs more indented than the first list item are nested in that
-  list. Displays such as tables (not indented) are always nested in the
-  current list.
-
-  To nest a list inside a list, indent its first item more than its parent
-  list. To end a list, add a paragraph or list item less indented than the
-  current list.
-
-  Section titles always end a list. Displays cannot end a list but the
-  <<<[]>>> pseudo-element may be used to force the end of a list.
-
-+------------------------------------+
-      * List item 3.
-        Force end of list:
-
-      []
-
---------------------------------------------
-Verbatim text not contained in list item 3
---------------------------------------------
-+------------------------------------+
-
-  In the previous example, without the <<<[]>>>, the verbatim text (not
-  indented as all displays) would have been contained in list item 3.
-
-  A single <<<[]>>> may be used to end several nested lists at the same
-  time. The indentation of <<<[]>>> may be used to specify exactly which
-  lists should be ended. Example:
-
-+------------------------------------+
-      * List item 1.
-
-      * List item 2.
-
-	    * Sub-list item 1.
-
-	    * Sub-list item 2.
-
-	    []
-
--------------------------------------------------------------------
-Verbatim text contained in list item 2, but not in sub-list item 2
--------------------------------------------------------------------
-+------------------------------------+
-
-  There are three kind of lists, the bulleted lists we have already described,
-  the numbered lists and the definition lists.
-
-+-----------------------------------------+
-      [[1]] Numbered item 1.
-
-                [[A]] Numbered item A.
-
-                [[B]] Numbered item B.
-
-      [[2]] Numbered item 2.
-+-----------------------------------------+
-
-  A numbered list item begins with a label beetween two square brackets. The
-  label of the first item establishes the numbering scheme for the whole list:
-
-      [<<<[[1\]\]>>>] Decimal numbering: 1, 2, 3, 4, etc.
-
-      [<<<[[a\]\]>>>] Lower-alpha numbering: a, b, c, d, etc.
-
-      [<<<[[A\]\]>>>] Upper-alpha numbering: A, B, C, D, etc.
-
-      [<<<[[i\]\]>>>] Lower-roman numbering: i, ii, iii, iv, etc.
-
-      [<<<[[I\]\]>>>] Upper-roman numbering: I, II, III, IV, etc.
-
-  The labels of the items other than the first one are ignored. It is
-  recommended to take the time to type the correct label for each item in
-  order to keep the APT source document readable.
-
-+-------------------------------------------+
-      [Defined term 1] of definition list 2.
-
-      [Defined term 2] of definition list 2.
-+-------------------------------------------+
-
-  A definition list item begins with a defined term: text between square
-  brackets.
-
-*** Verbatim text
-~~~~~~~~~~~~~~~~~
-
-+----------------------------------------+
-----------------------------------------
-Verbatim 
-	 text,
-		preformatted,
-				escaped.
-----------------------------------------
-+----------------------------------------+
-
-  A verbatim block is not indented. It begins with a non indented line
-  containing at least 3 dashes (<<<--->>>). It ends with a similar line.
-
-  <<<+-->>> instead of <<<--->>> draws a box around verbatim text.
-
-  Like in HTML, verbatim text is preformatted. Unlike HTML, verbatim text is
-  escaped: inside a verbatim display, markup is not interpreted by the APT
-  processor.
-
-*** Figure
-~~~~~~~~~~
-
-+---------------------------+
-[Figure name] Figure caption
-+---------------------------+
-
-  A figure block is not indented. It begins with the figure name between
-  square brackets. The figure name is optionally followed by some text: the
-  figure caption.
-
-  The figure name is the pathname of the file containing the figure but
-  without an extension. Example: if your figure is contained in
-  <<</home/joe/docs/mylogo.jpeg>>>, the figure name is
-  <<</home/joe/docs/mylogo>>>.
-
-  If the figure name comes from a relative pathname (recommended practice)
-  rather than from an absolute pathname, this relative pathname is taken to be
-  relative to the directory of the current APT document (a la HTML)
-  rather than relative to the current working directory.
-
-  Why not leave the file extension in the figure name? This is better
-  explained by an example. You need to convert an APT document to PostScript
-  and your figure name is <<</home/joe/docs/mylogo>>>. A APT processor will
-  first try to load <<</home/joe/docs/mylogo.eps>>>. When the desired format
-  is not found, a APT processor tries to convert one of the existing
-  formats. In our example, the APT processor tries to convert
-  <<</home/joe/docs/mylogo.jpeg>>> to encapsulated PostScript.
-
-*** Table
-~~~~~~~~~
-
-  A table block is not indented. It begins with a non indented line containing
-  an asterisk and at least 2 dashes (<<<*-->>>). It ends with a
-  similar line.
-
-  The first line is not only used to recognize a table but also to specify
-  column justification. In the following example, 
-
-      * the second asterisk (<<<*>>>) is used to specify that column 1 is
-        centered,
-
-      * the plus sign (<<<+>>>) specifies that column 2 is left aligned, 
-
-      * the colon (<<<:>>>) specifies that column 3 is right aligned.
-
-      []
-
-+---------------------------------------------+
-*----------*--------------+----------------:
-| Centered | Left-aligned | Right-aligned  |
-| cell 1,1 | cell 1,2     | cell 1,3       |
-*----------*--------------+----------------:
-| cell 2,1 | cell 2,2     | cell 2,3       |
-*----------*--------------+----------------:
-Table caption
-+---------------------------------------------+
-
-  Rows are separated by a non indented line beginning with <<<*-->>>.
-
-  An optional table caption (non indented text) may immediately follow the
-  table.
-
-  Rows may contain single line or multiple line cells. Each line of cell text
-  is separated from the adjacent cell by the pipe character (<<<|>>>).
-  (<<<|>>> may be used in the cell text if quoted: <<<\\|>>>.)
-
-  The last <<<|>>> is only used to make the table nicer.  The first <<<|>>> is
-  not only used to make the table nicer, but also to specify that a grid is to
-  be drawn around table cells.
-
-  The following example shows a simple table with no grid and no caption.
-
-+---------------+
-*-----*------*
- cell | cell
-*-----*------*
- cell | cell
-*-----*------*
-+---------------+
-
-*** Horizontal rule
-~~~~~~~~~~~~~~~~~~~
-
-+---------------------+
-=====================
-+---------------------+
-
-  A non indented line containing at least 3 equal signs (<<<===>>>).
-
-*** Page break
-~~~~~~~~~~~~~~
-
-+---+
-^L
-+---+
-
-  A non indented line containing a single form feed character (Control-L).
-
-** Text level elements
-~~~~~~~~~~~~~~~~~~~~~~
-
-*** Font
-~~~~~~~~
-
-+-----------------------------------------------------+
-  <Italic> font. <<Bold>> font. <<<Monospaced>>> font.
-+-----------------------------------------------------+
-
-  Text between \< and > must be rendered in italic. Text between \<\< and >>
-  must be rendered in bold. Text between \<\<\< and >>> must be rendered using
-  a monospaced, typewriter-like font.
-
-  Font elements may appear anywhere except inside other font elements.
-
-  It is not recommended to use font elements inside titles, section titles,
-  links and defined terms because a APT processor automatically applies
-  appropriate font styles to these elements.
-
-*** Anchor and link
-~~~~~~~~~~~~~~~~~~~
-
-+-----------------------------------------------------------------+
-  {Anchor}. Link to {{anchor}}. Link to {{http://www.pixware.fr}}. 
-  Link to {{{anchor}showing alternate text}}.
-  Link to {{{http://www.pixware.fr}Pixware home page}}.
-+-----------------------------------------------------------------+
-
-  Text between curly braces (<<<\{}>>>) specifies an anchor. Text between
-  double curly braces (<<<\{\{}}>>>) specifies a link.
-
-  It is an error to create a link element that does not refer to an anchor of
-  the same name. The name of an anchor/link is its text with all non
-  alphanumeric characters stripped.
-
-  This rule does not apply to links to <external> anchors. Text beginning
-  with <<<http:/>>>, <<<https:/>>>, <<<ftp:/>>>, <<<file:/>>>, <<<mailto:>>>,
-  <<<../>>>, <<<./>>> (<<<..\\>>> and <<<.\\>>> on Windows) is recognized as
-  an external anchor name.
-
-  When the construct <<\{\{\{>><name><<}>><text><<}}>> is used, the link text
-  <text> may differ from the link name <name>.
-
-  Anchor/link elements may appear anywhere except inside other anchor/link
-  elements.
-
-  Section titles are implicitly defined anchors.
-
-*** Line break
-~~~~~~~~~~~~~~
-
-+-------------+
-  Force line\
-  break.
-+-------------+
-
-  A backslash character (<<<\\>>>) followed by a newline character.
-
-  Line breaks must not be used inside titles and tables (which are line
-  oriented blocks with implicit line breaks).
-
-*** Non breaking space
-~~~~~~~~~~~~~~~~~~~~~~
-
-+----------------------+
-  Non\ breaking\ space.
-+----------------------+
-
-  A backslash character (<<<\\>>>) followed by a space character.
-
-*** Special character
-~~~~~~~~~~~~~~~~~~~~~
-
-+---------------------------------------------------------------------------+
-  Escaped special characters: \~, \=, \-, \+, \*, \[, \], \<, \>, \{, \}, \\.
-+---------------------------------------------------------------------------+
-
-  In certain contexts, these characters have a special meaning and therefore
-  must be escaped if needed as is. They are escaped by adding a backslash in
-  front of them. The backslash may itself be escaped by adding another
-  backslash in front of it.
-
-  Note that an asterisk, for example, needs to be escaped only if its begins a
-  paragraph. (<<<*>>> has no special meaning in the middle of a paragraph.)
-
-+--------------------------------------+
-  Copyright symbol: \251, \xA9, \u00a9.
-+--------------------------------------+
-
-  Latin-1 characters (whatever is the encoding of the APT document) may be
-  specified by their codes using a backslash followed by one to three octal
-  digits or by using the <<<\x>>><NN> notation, where <NN> are two hexadecimal
-  digits.
-
-  Unicode characters may be specified by their codes using the <<<\u>>><NNNN>
-  notation, where <NNNN> are four hexadecimal digits.
-
-*** Comment
-~~~~~~~~~~~
-
-+---------------+
-~~Commented out.
-+---------------+
-
-  Text found after two tildes (<<<\~~>>>) is ignored up to the end of line.
-
-  A line of <<<~>>> is often used to ``underline'' section titles in order to
-  make them stand out of other paragraphs.
-
-
-* The APT format at a glance
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-------------------------------------------------------------------------------
-				    ------
-				    Title
-				    ------
-				    Author
-				    ------
-				     Date
-
-  Paragraph 1, line 1.
-  Paragraph 1, line 2.
-
-  Paragraph 2, line 1.
-  Paragraph 2, line 2.
-
-Section title
-
-* Sub-section title
-
-** Sub-sub-section title
-
-*** Sub-sub-sub-section title
-
-**** Sub-sub-sub-sub-section title
-
-      * List item 1.
-
-      * List item 2.
-
-	Paragraph contained in list item 2.
-
-	    * Sub-list item 1.
-
-	    * Sub-list item 2.
-
-      * List item 3.
-        Force end of list:
-
-      []
-
-+------------------------------------------+
-Verbatim text not contained in list item 3
-+------------------------------------------+
-
-      [[1]] Numbered item 1.
-
-                [[A]] Numbered item A.
-
-                [[B]] Numbered item B.
-
-      [[2]] Numbered item 2.
-
-  List numbering schemes: [[1]], [[a]], [[A]], [[i]], [[I]].
-
-      [Defined term 1] of definition list.
-
-      [Defined term 2] of definition list.
-
-+-------------------------------+
-Verbatim text
-			in a box	
-+-------------------------------+
-
-  --- instead of +-- suppresses the box around verbatim text.
-
-[Figure name] Figure caption
-
-*----------*--------------+----------------:
-| Centered | Left-aligned | Right-aligned  |
-| cell 1,1 | cell 1,2     | cell 1,3       |
-*----------*--------------+----------------:
-| cell 2,1 | cell 2,2     | cell 2,3       |
-*----------*--------------+----------------:
-Table caption
-
-  No grid, no caption:
-
-*-----*------*
- cell | cell
-*-----*------*
- cell | cell
-*-----*------*
-
-  Horizontal line:
-
-=======================================================================
-
-^L
-  New page.
-
-  <Italic> font. <<Bold>> font. <<<Monospaced>>> font.
-
-  {Anchor}. Link to {{anchor}}. Link to {{http://www.pixware.fr}}. 
-  Link to {{{anchor}showing alternate text}}.
-  Link to {{{http://www.pixware.fr}Pixware home page}}.
-
-  Force line\
-  break.
-
-  Non\ breaking\ space.
-
-  Escaped special characters: \~, \=, \-, \+, \*, \[, \], \<, \>, \{, \}, \\.
-
-  Copyright symbol: \251, \xA9, \u00a9.
-
-~~Commented out.
-
-------------------------------------------------------------------------------
-
diff --git a/maven-archetype-site/src/main/resources/archetype-resources/src/site/fr/apt/index.apt b/maven-archetype-site/src/main/resources/archetype-resources/src/site/fr/apt/index.apt
deleted file mode 100644
index 510bdcc..0000000
--- a/maven-archetype-site/src/main/resources/archetype-resources/src/site/fr/apt/index.apt
+++ /dev/null
@@ -1,17 +0,0 @@
- -----
- Le Site
- -----
- L'équipe Maven
- -----
-
-Site Maven pour votre projet
-
- Félicitations!  Si vous regardez cette page alors vous avez
- généré avec succès un modèle de site en utilisant l'archétype
- de site et vous avez lancé :
-  
-+-----+
-
-m2 site:site
-
-+-----+
diff --git a/maven-archetype-site/src/main/resources/archetype-resources/src/site/fr/fml/faq.fml b/maven-archetype-site/src/main/resources/archetype-resources/src/site/fr/fml/faq.fml
deleted file mode 100644
index 1149285..0000000
--- a/maven-archetype-site/src/main/resources/archetype-resources/src/site/fr/fml/faq.fml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0"?>
-<faqs id="FAQ Général">
-  <part id="General">
-    <faq id="where">
-      <question>D'où vient Maven</question>
-      <answer>
-        <p>
-          Maven was created by a group of software developers who were tired
-          of wasting their time fiddling around with builds and wanted to get
-          down to brass tacks and actually develop software!
-        </p>
-      </answer>
-    </faq>
-    <faq id="why">
-      <question>Pourquoi Maven est-il si populaire?</question>
-      <answer>
-        <p>
-          Maven saves you so much time in your software development efforts that
-          you will have time to learn a second language, relax ten hours a
-          day, and train for that marathon you've always wanted to run!
-        </p>
-      </answer>
-    </faq>
-  </part>
-</faqs>
diff --git a/maven-archetype-site/src/main/resources/archetype-resources/src/site/fr/xdoc/xdoc.xml b/maven-archetype-site/src/main/resources/archetype-resources/src/site/fr/xdoc/xdoc.xml
deleted file mode 100644
index f9c869c..0000000
--- a/maven-archetype-site/src/main/resources/archetype-resources/src/site/fr/xdoc/xdoc.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0"?>
-<document>
-  <properties>
-    <title>Bienvenue</title>
-    <author email="dev@maven.apache.org">The Maven Team</author>
-  </properties>
-  <body>
-    <section name="Bienvenue dans un fichier XDOC!">
-      <p>
-        Ceci est du texte pour le fichier xdoc.
-      </p>
-    </section>
-  </body>
-</document>
-
diff --git a/maven-archetype-site/src/main/resources/archetype-resources/src/site/site.xml b/maven-archetype-site/src/main/resources/archetype-resources/src/site/site.xml
deleted file mode 100644
index 803a830..0000000
--- a/maven-archetype-site/src/main/resources/archetype-resources/src/site/site.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<project name="Maven">
-  <bannerLeft>
-    <name>Maven</name>
-    <src>http://maven.apache.org/images/apache-maven-project.png</src>
-    <href>http://maven.apache.org/</href>
-  </bannerLeft>
-  <bannerRight>
-    <src>http://maven.apache.org/images/maven-small.gif</src>
-  </bannerRight>
-  <body>
-    <links>
-      <item name="Apache" href="http://www.apache.org/" />
-      <item name="Maven 1.0" href="http://maven.apache.org/"/>
-      <item name="Maven 2" href="http://maven.apache.org/maven2/"/>
-    </links>
-
-    <menu name="Maven 2.0">
-      <item name="APT Format" href="format.html"/>
-      <item name="FAQ" href="faq.html"/>
-      <item name="Xdoc Example" href="xdoc.html"/>      
-    </menu>
-  </body>
-</project>
diff --git a/maven-archetype-site/src/main/resources/archetype-resources/src/site/site_fr.xml b/maven-archetype-site/src/main/resources/archetype-resources/src/site/site_fr.xml
deleted file mode 100644
index 9ed5732..0000000
--- a/maven-archetype-site/src/main/resources/archetype-resources/src/site/site_fr.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-<project name="Maven">
-  <bannerLeft>
-    <name>Maven</name>
-    <src>http://maven.apache.org/images/apache-maven-project.png</src>
-    <href>http://maven.apache.org/</href>
-  </bannerLeft>
-  <bannerRight>
-    <src>http://maven.apache.org/images/maven-small.gif</src>
-  </bannerRight>
-  <body>
-    <links>
-      <item name="Apache" href="http://www.apache.org/" />
-      <item name="Maven 1.0" href="http://maven.apache.org/"/>
-      <item name="Maven 2" href="http://maven.apache.org/maven2/"/>
-    </links>
-
-    <menu name="Maven 2.0">
-      <item name="Format APT" href="format.html"/>
-      <item name="FAQ" href="faq.html"/>
-      <item name="Exemple Xdoc" href="xdoc.html"/>      
-    </menu>
-  </body>
-</project>
diff --git a/maven-archetype-site/src/main/resources/archetype-resources/src/site/xdoc/xdoc.xml b/maven-archetype-site/src/main/resources/archetype-resources/src/site/xdoc/xdoc.xml
deleted file mode 100644
index 1b3e4f6..0000000
--- a/maven-archetype-site/src/main/resources/archetype-resources/src/site/xdoc/xdoc.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0"?>
-<document>
-  <properties>
-    <title>Welcome</title>
-    <author email="dev@maven.apache.org">The Maven Team</author>
-  </properties>
-  <body>
-    <section name="Welcome to an XDOC file!">
-      <p>
-        This is some text for the xdoc file.
-      </p>
-    </section>
-  </body>
-</document>
-
diff --git a/maven-archetype-webapp/pom.xml b/maven-archetype-webapp/pom.xml
deleted file mode 100644
index 80458e4..0000000
--- a/maven-archetype-webapp/pom.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-Licensed to the Apache Software Foundation (ASF) under one
-or more contributor license agreements.  See the NOTICE file
-distributed with this work for additional information
-regarding copyright ownership.  The ASF licenses this file
-to you under the Apache License, Version 2.0 (the
-"License"); you may not use this file except in compliance
-with the License.  You may obtain a copy of the License at
-
-  http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing,
-software distributed under the License is distributed on an
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-KIND, either express or implied.  See the License for the
-specific language governing permissions and limitations
-under the License.
--->
-
-<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">
-  <parent>
-    <artifactId>maven-archetype-bundles</artifactId>
-    <groupId>org.apache.maven.archetypes</groupId>
-    <version>3-SNAPSHOT</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <description>
-    An archetype which contains a sample Maven Webapp project.
-  </description>
-  <artifactId>maven-archetype-webapp</artifactId>
-  <name>Maven Webapp Archetype</name>
-  <version>1.1-SNAPSHOT</version>
-</project>
diff --git a/maven-archetype-webapp/src/main/resources/META-INF/archetype.xml b/maven-archetype-webapp/src/main/resources/META-INF/archetype.xml
deleted file mode 100644
index ac11f32..0000000
--- a/maven-archetype-webapp/src/main/resources/META-INF/archetype.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<archetype>
-  <id>webapp</id>
-  <resources>
-    <resource>src/main/webapp/index.jsp</resource>
-    <resource>src/main/webapp/WEB-INF/web.xml</resource>
-  </resources>
-</archetype>
diff --git a/maven-archetype-webapp/src/main/resources/archetype-resources/pom.xml b/maven-archetype-webapp/src/main/resources/archetype-resources/pom.xml
deleted file mode 100644
index e385029..0000000
--- a/maven-archetype-webapp/src/main/resources/archetype-resources/pom.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<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>${artifactId} Maven Webapp</name>
-  <url>http://maven.apache.org</url>
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-  <build>
-    <finalName>${artifactId}</finalName>
-  </build>
-</project>
diff --git a/maven-archetype-webapp/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml b/maven-archetype-webapp/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml
deleted file mode 100644
index 9f88c1f..0000000
--- a/maven-archetype-webapp/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<!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>
diff --git a/maven-archetype-webapp/src/main/resources/archetype-resources/src/main/webapp/index.jsp b/maven-archetype-webapp/src/main/resources/archetype-resources/src/main/webapp/index.jsp
deleted file mode 100644
index c38169b..0000000
--- a/maven-archetype-webapp/src/main/resources/archetype-resources/src/main/webapp/index.jsp
+++ /dev/null
@@ -1,5 +0,0 @@
-<html>
-<body>
-<h2>Hello World!</h2>
-</body>
-</html>