You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jv...@apache.org on 2007/07/06 18:35:16 UTC

svn commit: r553946 [2/19] - in /maven/archetype/branches/maven-archetypeng: ./ maven-archetypeng-bundles/ maven-archetypeng-bundles/maven-archetypeng-archetype/ maven-archetypeng-bundles/maven-archetypeng-archetype/src/ maven-archetypeng-bundles/maven...

Added: maven/archetype/branches/maven-archetypeng/NOTICE.txt
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/NOTICE.txt?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/NOTICE.txt (added)
+++ maven/archetype/branches/maven-archetypeng/NOTICE.txt Fri Jul  6 09:34:35 2007
@@ -0,0 +1,3 @@
+We use jchardet jchardet.sourceforge.net for file encoding recognition. 
+jchardet is using Mozilla 1.1 license
+

Propchange: maven/archetype/branches/maven-archetypeng/NOTICE.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/NOTICE.txt
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/archetype.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/archetype.xml?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/archetype.xml (added)
+++ maven/archetype/branches/maven-archetypeng/archetype.xml Fri Jul  6 09:34:35 2007
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?><archetype-descriptor id="core-integration-tests-archetype">
+  <fileSets>
+    <fileSet filtered="true" packaged="true" encoding="UTF-8">
+      <directory>src/test/java</directory>
+      <includes>
+        <include>**/*.java</include>
+      </includes>
+    </fileSet>
+    <fileSet filtered="true" encoding="UTF-8">
+      <directory>src/test/resources</directory>
+      <includes>
+        <include>**/*.java</include>
+        <include>**/*.xml</include>
+      </includes>
+    </fileSet>
+  </fileSets>
+</archetype-descriptor>
\ No newline at end of file

Propchange: maven/archetype/branches/maven-archetypeng/archetype.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/archetype.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/pom.xml?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/pom.xml (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/pom.xml Fri Jul  6 09:34:35 2007
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ 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
+    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>
+
+    <parent>
+        <groupId>org.codehaus.mojo.archetypeng</groupId>
+        <artifactId>maven-archetypeng-bundles</artifactId>
+        <version>1.0-SNAPSHOT</version>
+    </parent>
+
+    <groupId>org.codehaus.mojo.archetypes</groupId>
+    <artifactId>maven-archetypeng-archetype</artifactId>
+
+    <name>Archetype Archetype</name>
+    <packaging>maven-plugin</packaging>
+
+    <description>
+        An archetype which contains a sample archetype.
+    </description>
+</project>

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/META-INF/maven/archetype.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/META-INF/maven/archetype.xml?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/META-INF/maven/archetype.xml (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/META-INF/maven/archetype.xml Fri Jul  6 09:34:35 2007
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ 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.
+  -->
+<archetype>
+    <name>maven-archetypeng-archetype</name>
+    <resources-groups>
+        <resources-group>
+            <templates>
+                <template>archetype-resources/pom.xml</template>
+                <template>archetype-resources/src/main/java/App.java</template>
+                <template>archetype-resources/src/test/java/AppTest.java</template>
+                <template>META-INF/maven/archetype.xml</template>
+            </templates>
+        </resources-group>
+    </resources-groups>
+</archetype>

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/META-INF/maven/archetype.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/META-INF/maven/archetype.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/pom.xml?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/pom.xml (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/pom.xml Fri Jul  6 09:34:35 2007
@@ -0,0 +1,16 @@
+<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>
+    <packaging>jar</packaging>
+
+    <url>http://maven.apache.org</url>
+</project>

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/src/main/resources/META-INF/maven/archetype.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/src/main/resources/META-INF/maven/archetype.xml?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/src/main/resources/META-INF/maven/archetype.xml (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/src/main/resources/META-INF/maven/archetype.xml Fri Jul  6 09:34:35 2007
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ 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.
+  -->
+<archetype>
+    <name>${artifactId}</name>
+    <sources-groups>
+        <sources-group>
+            <templates>
+                <template>App.java</template>
+            </templates>
+        </sources-group>
+    </sources-groups>
+    <test-sources-groups>
+        <test-sources-group>
+            <templates>
+                <template>AppTest.java</template>
+            </templates>
+        </test-sources-group>
+    </test-sources-groups>
+</archetype>

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/src/main/resources/META-INF/maven/archetype.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/src/main/resources/META-INF/maven/archetype.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/pom.xml?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/pom.xml (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/pom.xml Fri Jul  6 09:34:35 2007
@@ -0,0 +1,22 @@
+<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>\${artifactId}</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>3.8.1</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+</project>

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/src/main/java/App.java
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/src/main/java/App.java?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/src/main/java/App.java (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/src/main/java/App.java Fri Jul  6 09:34:35 2007
@@ -0,0 +1,12 @@
+package \${packageName};
+/**
+ * Hello world!
+ *
+ */
+public class App 
+{
+    public static void main( String[] args )
+    {
+        System.out.println( "Hello World!" );
+    }
+}

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/src/main/java/App.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/src/main/java/App.java
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/src/test/java/AppTest.java
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/src/test/java/AppTest.java?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/src/test/java/AppTest.java (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/src/test/java/AppTest.java Fri Jul  6 09:34:35 2007
@@ -0,0 +1,38 @@
+package \${packageName};
+
+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 );
+    }
+}

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/src/test/java/AppTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-archetype/src/main/resources/archetype-resources/src/main/resources/archetype-resources/src/test/java/AppTest.java
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/pom.xml?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/pom.xml (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/pom.xml Fri Jul  6 09:34:35 2007
@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ 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
+    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>
+
+    <parent>
+        <groupId>org.codehaus.mojo.archetypeng</groupId>
+        <artifactId>maven-archetypeng-bundles</artifactId>
+        <version>1.0-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>maven-archetypeng-start</artifactId>
+
+    <name>Starting Archetype</name>
+    <packaging>maven-plugin</packaging>
+</project>
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+  ~ 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 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>

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/META-INF/maven/archetype.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/META-INF/maven/archetype.xml?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/META-INF/maven/archetype.xml (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/META-INF/maven/archetype.xml Fri Jul  6 09:34:35 2007
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ 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.
+  -->
+<archetype>
+    <name>start</name>
+    <sources-groups>
+        <sources-group>
+            <language>java</language>
+            <templates>
+                <template>App.java</template>
+            </templates>
+        </sources-group>
+    </sources-groups>
+    <test-sources-groups>
+        <test-sources-group>
+            <language>java</language>
+            <templates>
+                <template>AppTest.java</template>
+            </templates>
+        </test-sources-group>
+    </test-sources-groups>
+</archetype>
+<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>

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/META-INF/maven/archetype.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/META-INF/maven/archetype.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/ear/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/ear/pom.xml?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/ear/pom.xml (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/ear/pom.xml Fri Jul  6 09:34:35 2007
@@ -0,0 +1,47 @@
+<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>

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/ear/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/ear/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/ejbs/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/ejbs/pom.xml?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/ejbs/pom.xml (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/ejbs/pom.xml Fri Jul  6 09:34:35 2007
@@ -0,0 +1,37 @@
+<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>

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/ejbs/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/ejbs/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/ejbs/src/main/resources/META-INF/ejb-jar.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/ejbs/src/main/resources/META-INF/ejb-jar.xml?view=auto&rev=553946
==============================================================================
    (empty)

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/ejbs/src/main/resources/META-INF/ejb-jar.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/ejbs/src/main/resources/META-INF/ejb-jar.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/pirmary-source/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/pirmary-source/pom.xml?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/pirmary-source/pom.xml (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/pirmary-source/pom.xml Fri Jul  6 09:34:35 2007
@@ -0,0 +1,36 @@
+<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>

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/pirmary-source/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/pirmary-source/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/pom.xml?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/pom.xml (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/pom.xml Fri Jul  6 09:34:35 2007
@@ -0,0 +1,62 @@
+<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>
+      <module>site</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>

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/projects/logging/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/projects/logging/pom.xml?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/projects/logging/pom.xml (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/projects/logging/pom.xml Fri Jul  6 09:34:35 2007
@@ -0,0 +1,12 @@
+<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>

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/projects/logging/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/projects/logging/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/projects/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/projects/pom.xml?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/projects/pom.xml (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/projects/pom.xml Fri Jul  6 09:34:35 2007
@@ -0,0 +1,16 @@
+<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>

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/projects/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/projects/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/servlets/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/servlets/pom.xml?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/servlets/pom.xml (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/servlets/pom.xml Fri Jul  6 09:34:35 2007
@@ -0,0 +1,17 @@
+<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>
+

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/servlets/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/servlets/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/servlets/servlet/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/servlets/servlet/pom.xml?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/servlets/servlet/pom.xml (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/servlets/servlet/pom.xml Fri Jul  6 09:34:35 2007
@@ -0,0 +1,19 @@
+<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>

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/servlets/servlet/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/servlets/servlet/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/servlets/servlet/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/servlets/servlet/src/main/webapp/WEB-INF/web.xml?view=auto&rev=553946
==============================================================================
    (empty)

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/servlets/servlet/src/main/webapp/WEB-INF/web.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/servlets/servlet/src/main/webapp/WEB-INF/web.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/servlets/servlet/src/main/webapp/index.jsp
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/servlets/servlet/src/main/webapp/index.jsp?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/servlets/servlet/src/main/webapp/index.jsp (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/servlets/servlet/src/main/webapp/index.jsp Fri Jul  6 09:34:35 2007
@@ -0,0 +1,5 @@
+<html>
+<body>
+<h2>Hello World!</h2>
+</body>
+</html>

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/servlets/servlet/src/main/webapp/index.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-j2ee-simple/src/main/resources/archetype-resources/servlets/servlet/src/main/webapp/index.jsp
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/pom.xml?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/pom.xml (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/pom.xml Fri Jul  6 09:34:35 2007
@@ -0,0 +1,66 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ 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
+    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>
+
+    <parent>
+        <groupId>org.codehaus.mojo.archetypeng</groupId>
+        <artifactId>maven-archetypeng-bundles</artifactId>
+        <version>1.0-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>maven-archetypeng-start</artifactId>
+
+    <name>Starting Archetype</name>
+    <packaging>maven-plugin</packaging>
+</project>
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+  ~ 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 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>

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/META-INF/maven/archetype.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/META-INF/maven/archetype.xml?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/META-INF/maven/archetype.xml (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/META-INF/maven/archetype.xml Fri Jul  6 09:34:35 2007
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ 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.
+  -->
+<archetype>
+    <name>start</name>
+    <sources-groups>
+        <sources-group>
+            <language>java</language>
+            <templates>
+                <template>App.java</template>
+            </templates>
+        </sources-group>
+    </sources-groups>
+    <test-sources-groups>
+        <test-sources-group>
+            <language>java</language>
+            <templates>
+                <template>AppTest.java</template>
+            </templates>
+        </test-sources-group>
+    </test-sources-groups>
+</archetype>
+<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>

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/META-INF/maven/archetype.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/META-INF/maven/archetype.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/pom.xml?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/pom.xml (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/pom.xml Fri Jul  6 09:34:35 2007
@@ -0,0 +1,16 @@
+<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>

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/src/site/apt/examples/example.apt
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/src/site/apt/examples/example.apt?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/src/site/apt/examples/example.apt (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/src/site/apt/examples/example.apt Fri Jul  6 09:34:35 2007
@@ -0,0 +1,34 @@
+ ------
+ 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>
+-------------------

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/src/site/apt/examples/example.apt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/src/site/apt/examples/example.apt
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/src/site/apt/index.apt
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/src/site/apt/index.apt?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/src/site/apt/index.apt (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/src/site/apt/index.apt Fri Jul  6 09:34:35 2007
@@ -0,0 +1,30 @@
+ ------
+ 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}}

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/src/site/apt/index.apt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/src/site/apt/index.apt
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/src/site/apt/usage.apt
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/src/site/apt/usage.apt?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/src/site/apt/usage.apt (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/src/site/apt/usage.apt Fri Jul  6 09:34:35 2007
@@ -0,0 +1,21 @@
+ ------
+ 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

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/src/site/apt/usage.apt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/src/site/apt/usage.apt
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/src/site/site.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/src/site/site.xml?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/src/site/site.xml (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/src/site/site.xml Fri Jul  6 09:34:35 2007
@@ -0,0 +1,39 @@
+<?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>

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/src/site/site.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin-site/src/main/resources/archetype-resources/src/site/site.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/archetype.properties
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/archetype.properties?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/archetype.properties (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/archetype.properties Fri Jul  6 09:34:35 2007
@@ -0,0 +1,10 @@
+#
+#Fri May 25 01:28:46 EDT 2007
+version=1.0-SNAPSHOT
+package=.svn
+archetype.groupId=org.codehaus.mojo.archetypes
+archetype.artifactId=maven-archetypeng-maven-plugin-archetype
+groupId=org.codehaus.mojo.archetypes
+=
+artifactId=maven-archetypeng-maven-plugin
+archetype.version=1.0-SNAPSHOT

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/archetype.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/archetype.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/pom.xml?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/pom.xml (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/pom.xml Fri Jul  6 09:34:35 2007
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ 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
+    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>
+
+    <parent>
+        <groupId>org.codehaus.mojo.archetypeng</groupId>
+        <artifactId>maven-archetypeng-bundles</artifactId>
+        <version>1.0-SNAPSHOT</version>
+    </parent>
+
+    <groupId>org.codehaus.mojo.archetypes</groupId>
+    <artifactId>maven-archetypeng-maven-plugin</artifactId>
+
+    <name>Plugin Archetype</name>
+    <packaging>maven-plugin</packaging>
+
+    <description>
+        An archetype which contains a sample Maven plugin.
+    </description>
+</project>

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/src/main/resources/META-INF/maven/archetype.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/src/main/resources/META-INF/maven/archetype.xml?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/src/main/resources/META-INF/maven/archetype.xml (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/src/main/resources/META-INF/maven/archetype.xml Fri Jul  6 09:34:35 2007
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ 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.
+-->
+<archetype>
+    <name>maven-archetypeng-maven-plugin</name>
+    <sources-groups>
+        <sources-group>
+            <templates>
+                <template>MyMojo.java</template>
+            </templates>
+        </sources-group>
+    </sources-groups>
+</archetype>

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/src/main/resources/META-INF/maven/archetype.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/src/main/resources/META-INF/maven/archetype.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/src/main/resources/archetype-resources/pom.xml?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/src/main/resources/archetype-resources/pom.xml (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/src/main/resources/archetype-resources/pom.xml Fri Jul  6 09:34:35 2007
@@ -0,0 +1,30 @@
+<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>${artifactId} Maven Mojo</name>
+    <packaging>maven-plugin</packaging>
+
+    <url>http://maven.apache.org</url>
+
+    <dependencies>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-plugin-api</artifactId>
+      <version>2.0.4</version>
+    </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>3.8.1</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+</project>

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/src/main/resources/archetype-resources/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/src/main/resources/archetype-resources/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/src/main/resources/archetype-resources/src/main/java/MyMojo.java
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/src/main/resources/archetype-resources/src/main/java/MyMojo.java?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/src/main/resources/archetype-resources/src/main/java/MyMojo.java (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/src/main/resources/archetype-resources/src/main/java/MyMojo.java Fri Jul  6 09:34:35 2007
@@ -0,0 +1,80 @@
+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
+                }
+            }
+        }
+    }
+}

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/src/main/resources/archetype-resources/src/main/java/MyMojo.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-plugin/src/main/resources/archetype-resources/src/main/java/MyMojo.java
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-portlet/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-portlet/pom.xml?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-portlet/pom.xml (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-portlet/pom.xml Fri Jul  6 09:34:35 2007
@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ 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
+    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>
+
+    <parent>
+        <groupId>org.codehaus.mojo.archetypeng</groupId>
+        <artifactId>maven-archetypeng-bundles</artifactId>
+        <version>1.0-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>maven-archetypeng-start</artifactId>
+
+    <name>Starting Archetype</name>
+    <packaging>maven-plugin</packaging>
+</project>
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+  ~ 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 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.1-SNAPSHOT</version>
+</project>

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-portlet/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-portlet/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-portlet/src/main/resources/META-INF/maven/archetype.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-portlet/src/main/resources/META-INF/maven/archetype.xml?view=auto&rev=553946
==============================================================================
--- maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-portlet/src/main/resources/META-INF/maven/archetype.xml (added)
+++ maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-portlet/src/main/resources/META-INF/maven/archetype.xml Fri Jul  6 09:34:35 2007
@@ -0,0 +1,125 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ 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.
+  -->
+<archetype>
+    <name>start</name>
+    <sources-groups>
+        <sources-group>
+            <language>java</language>
+            <templates>
+                <template>App.java</template>
+            </templates>
+        </sources-group>
+    </sources-groups>
+    <test-sources-groups>
+        <test-sources-group>
+            <language>java</language>
+            <templates>
+                <template>AppTest.java</template>
+            </templates>
+        </test-sources-group>
+    </test-sources-groups>
+</archetype>
+<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/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>
+  </resources>
+</archetype>
+<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/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>
+  </resources>
+</archetype>
+<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/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>
+  </resources>
+</archetype>
+<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/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>
+  </resources>
+</archetype>
+<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/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>
+  </resources>
+</archetype>
+<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/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>
+  </resources>
+</archetype>

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-portlet/src/main/resources/META-INF/maven/archetype.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/branches/maven-archetypeng/maven-archetypeng-bundles/maven-archetypeng-portlet/src/main/resources/META-INF/maven/archetype.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"