You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ah...@apache.org on 2007/11/16 13:16:33 UTC

svn commit: r595639 [2/3] - in /maven/plugins/trunk/maven-eclipse-plugin/src: main/java/org/apache/maven/plugin/eclipse/ main/java/org/apache/maven/plugin/eclipse/writers/ main/java/org/apache/maven/plugin/eclipse/writers/rad/ main/java/org/apache/mave...

Modified: maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/AbstractEclipsePluginTestCase.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/AbstractEclipsePluginTestCase.java?rev=595639&r1=595638&r2=595639&view=diff
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/AbstractEclipsePluginTestCase.java (original)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/AbstractEclipsePluginTestCase.java Fri Nov 16 04:16:25 2007
@@ -230,7 +230,8 @@
 
         MavenProject project = readProject( pom );
 
-        String outputDirPath = IdeUtils.getPluginSetting( project, "maven-eclipse-plugin", "outputDir", null );
+        String outputDirPath =
+            IdeUtils.getPluginSetting( project, "org.apache.maven.plugins:maven-eclipse-plugin", "outputDir", null );
         File outputDir;
         File projectOutputDir = basedir;
 
@@ -302,7 +303,8 @@
 
         MavenProject project = readProject( pom );
 
-        String outputDirPath = IdeUtils.getPluginSetting( project, "maven-eclipse-plugin", "outputDir", null );
+        String outputDirPath =
+            IdeUtils.getPluginSetting( project, "org.apache.maven.plugins:maven-eclipse-plugin", "outputDir", null );
         File outputDir;
         File projectOutputDir = basedir;
 
@@ -430,7 +432,7 @@
      * @param projectOutputDir
      * @throws IOException
      */
-    private void compareDirectoryContent( File basedir, File projectOutputDir, String additionalDir )
+    protected void compareDirectoryContent( File basedir, File projectOutputDir, String additionalDir )
         throws IOException
     {
         File expectedConfigDir = new File( basedir, "expected/" + additionalDir );

Modified: maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/EclipsePluginTest.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/EclipsePluginTest.java?rev=595639&r1=595638&r2=595639&view=diff
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/EclipsePluginTest.java (original)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/EclipsePluginTest.java Fri Nov 16 04:16:25 2007
@@ -18,9 +18,16 @@
  */
 package org.apache.maven.plugin.eclipse;
 
+import java.io.File;
+import java.io.FileNotFoundException;
+import java.io.FileReader;
+import java.io.IOException;
 import java.util.Properties;
 
 import org.apache.maven.plugin.MojoExecutionException;
+import org.codehaus.plexus.util.xml.Xpp3Dom;
+import org.codehaus.plexus.util.xml.Xpp3DomBuilder;
+import org.codehaus.plexus.util.xml.pull.XmlPullParserException;
 
 /**
  * @author <a href="mailto:trygvis@inamo.no">Trygve Laugst&oslash;l</a>
@@ -358,6 +365,89 @@
         throws Exception
     {
         testProject( "project-34" );
+    }
+
+    public void testJeeSimple()
+        throws Exception
+    {
+        testProject( "j2ee-simple" );
+
+        File basedir = getTestFile( "target/test-classes/projects/j2ee-simple" );
+
+        checkContextRoot( basedir, "servlets/servlet", "ear", "servlet" );
+
+    }
+
+    public void testProject35()
+        throws Exception
+    {
+        testProject( "project-35" );
+
+        File basedir = getTestFile( "target/test-classes/projects/project-35" );
+
+        checkContextRoot( basedir, "multymodule-war", "multymodule-ear", "/somethingVeryDifferent" );
+
+        FileReader reader =
+            new FileReader( new File( basedir, "multymodule-war/.settings/org.eclipse.wst.common.component" ) );
+        Xpp3Dom warComponent = Xpp3DomBuilder.build( reader );
+        Xpp3Dom[] dependentModules = warComponent.getChild( "wb-module" ).getChildren( "dependent-module" );
+        assertEquals( 2, dependentModules.length );
+        for ( int index = 0; index < dependentModules.length; index++ )
+        {
+            assertEquals( "/WEB-INF/lib", dependentModules[index].getAttribute( "deploy-path" ) );
+        }
+
+        reader = new FileReader( new File( basedir, "multymodule-ear/.settings/org.eclipse.wst.common.component" ) );
+        Xpp3Dom earComponent = Xpp3DomBuilder.build( reader );
+        dependentModules = earComponent.getChild( "wb-module" ).getChildren( "dependent-module" );
+        assertEquals( 2, dependentModules.length );
+        for ( int index = 0; index < dependentModules.length; index++ )
+        {
+            if ( dependentModules[index].getAttribute( "archiveName" ).endsWith( "war" ) )
+            {
+                assertEquals( "/", dependentModules[index].getAttribute( "deploy-path" ) );
+                assertTrue( !dependentModules[index].getAttribute( "archiveName" ).startsWith( ".." ) );
+            }
+            else
+            {
+                assertEquals( "lib", dependentModules[index].getAttribute( "deploy-path" ) );
+                assertTrue( dependentModules[index].getAttribute( "archiveName" ).startsWith( ".." ) );
+            }
+        }
+    }
+
+    private void checkContextRoot( File basedir, String warModule, String earModule, String expectedContextRoot )
+        throws FileNotFoundException, XmlPullParserException, IOException
+    {
+        FileReader reader =
+            new FileReader( new File( basedir, warModule + "/.settings/org.eclipse.wst.common.component" ) );
+        Xpp3Dom warComponent = Xpp3DomBuilder.build( reader );
+        Xpp3Dom[] properties = warComponent.getChild( "wb-module" ).getChildren( "property" );
+        boolean contextRootAvaliable = false;
+        for ( int index = 0; index < properties.length; index++ )
+        {
+            if ( properties[index].getAttribute( "name" ).equals( "context-root" ) )
+            {
+                assertEquals( "Context root detection in org.eclipse.wst.common.component", expectedContextRoot,
+                              properties[index].getAttribute( "value" ) );
+                contextRootAvaliable = true;
+            }
+        }
+        assertTrue( "there must be a context root here", contextRootAvaliable );
+
+        reader = new FileReader( new File( basedir, earModule + "/target/eclipseEar/META-INF/application.xml" ) );
+        Xpp3Dom generatedApplicationXML = Xpp3DomBuilder.build( reader );
+
+        Xpp3Dom[] modules = generatedApplicationXML.getChildren( "module" );
+        for ( int index = 0; index < modules.length; index++ )
+        {
+            if ( modules[index].getChild( "web" ) != null )
+            {
+                assertEquals( "Context root detection in target/eclipseEar/META-INF/application.xml",
+                              expectedContextRoot,
+                              modules[index].getChild( "web" ).getChild( "context-root" ).getValue() );
+            }
+        }
     }
 
     /**

Modified: maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/RadPluginTest.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/RadPluginTest.java?rev=595639&r1=595638&r2=595639&view=diff
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/RadPluginTest.java (original)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/RadPluginTest.java Fri Nov 16 04:16:25 2007
@@ -82,7 +82,8 @@
 
         MavenProject project = readProject( pom0 );
 
-        String outputDirPath = IdeUtils.getPluginSetting( project, "maven-eclipse-plugin", "outputDir", null );
+        String outputDirPath =
+            IdeUtils.getPluginSetting( project, "org.apache.maven.plugins:maven-eclipse-plugin", "outputDir", null );
         File outputDir;
 
         if ( outputDirPath == null )
@@ -151,7 +152,7 @@
 
         assertEquals( "project-rad-5_2.war", webappModule.getChild( "web" ).getChild( "web-uri" ).getValue() );
         assertEquals( "project-rad-5_2", webappModule.getChild( "web" ).getChild( "context-root" ).getValue() );
-        assertEquals( "project-rad-5_3.jar", ejbModule.getChild( "ejb" ).getValue() );
+        assertEquals( "project-rad-5_3.jar", ejbModule.getChild( Constants.PROJECT_PACKAGING_EJB ).getValue() );
 
         Xpp3Dom websettings =
             Xpp3DomBuilder.build( new InputStreamReader(
@@ -176,7 +177,8 @@
 
         MavenProject project = readProject( pom0 );
 
-        String outputDirPath = IdeUtils.getPluginSetting( project, "maven-eclipse-plugin", "outputDir", null );
+        String outputDirPath =
+            IdeUtils.getPluginSetting( project, "org.apache.maven.plugins:maven-eclipse-plugin", "outputDir", null );
         File outputDir;
 
         if ( outputDirPath == null )
@@ -245,7 +247,7 @@
             }
             else if ( child.getAttribute( "id" ).startsWith( "EjbModule_" ) )
             {
-                assertEquals( "project-rad-5_3.jar", child.getChild( "ejb" ).getValue() );
+                assertEquals( "project-rad-5_3.jar", child.getChild( Constants.PROJECT_PACKAGING_EJB ).getValue() );
                 ejbVerified = true;
             }
         }

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/1.0-SNAPSHOT/maven-metadata-local.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/1.0-SNAPSHOT/maven-metadata-local.xml?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/1.0-SNAPSHOT/maven-metadata-local.xml (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/1.0-SNAPSHOT/maven-metadata-local.xml Fri Nov 16 04:16:25 2007
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+  <groupId>root</groupId>
+  <artifactId>project</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <versioning>
+    <snapshot>
+      <localCopy>true</localCopy>
+    </snapshot>
+    <lastUpdated>20071116101151</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/1.0-SNAPSHOT/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/1.0-SNAPSHOT/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/1.0-SNAPSHOT/project-1.0-SNAPSHOT.pom
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/1.0-SNAPSHOT/project-1.0-SNAPSHOT.pom?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/1.0-SNAPSHOT/project-1.0-SNAPSHOT.pom (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/1.0-SNAPSHOT/project-1.0-SNAPSHOT.pom Fri Nov 16 04:16:25 2007
@@ -0,0 +1,91 @@
+<?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">
+	<modelVersion>4.0.0</modelVersion>
+	<groupId>root</groupId>
+	<version>1.0-SNAPSHOT</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>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-eclipse-plugin</artifactId>
+				<configuration>
+					<projectNameTemplate>
+						[artifactId]-[version]
+					</projectNameTemplate>
+					<wtpmanifest>true</wtpmanifest>
+					<wtpapplicationxml>true</wtpapplicationxml>
+					<wtpversion>2.0</wtpversion>
+					<manifest>
+						${basedir}/src/main/resources/META-INF/MANIFEST.MF
+					</manifest>
+				</configuration>
+			</plugin>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <version>2.3</version>
+      </plugin>
+		</plugins>
+	</build>
+	<dependencyManagement>
+		<dependencies>
+			<dependency>
+				<groupId>root.project.projects</groupId>
+				<artifactId>logging</artifactId>
+				<version>${pom.version}</version>
+			</dependency>
+			<dependency>
+				<groupId>root.project</groupId>
+				<artifactId>primary-source</artifactId>
+				<version>${pom.version}</version>
+			</dependency>
+			<dependency>
+				<groupId>root.project.servlets</groupId>
+				<artifactId>servlet</artifactId>
+				<version>${pom.version}</version>
+				<type>war</type>
+			</dependency>
+			<dependency>
+				<groupId>root.project</groupId>
+				<artifactId>ejbs</artifactId>
+				<version>${pom.version}</version>
+				<type>ejb</type>
+			</dependency>
+    </dependencies>
+  </dependencyManagement>
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/1.0-SNAPSHOT/project-1.0-SNAPSHOT.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/1.0-SNAPSHOT/project-1.0-SNAPSHOT.pom
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ear/maven-metadata-local.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ear/maven-metadata-local.xml?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ear/maven-metadata-local.xml (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ear/maven-metadata-local.xml Fri Nov 16 04:16:25 2007
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+  <groupId>root.project</groupId>
+  <artifactId>ear</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <versioning>
+    <versions>
+      <version>1.0-SNAPSHOT</version>
+    </versions>
+    <lastUpdated>20071116101308</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ear/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ear/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ejbs/1.0-SNAPSHOT/ejbs-1.0-SNAPSHOT.jar
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ejbs/1.0-SNAPSHOT/ejbs-1.0-SNAPSHOT.jar?rev=595639&view=auto
==============================================================================
Binary file - no diff available.

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ejbs/1.0-SNAPSHOT/ejbs-1.0-SNAPSHOT.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ejbs/1.0-SNAPSHOT/ejbs-1.0-SNAPSHOT.pom
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ejbs/1.0-SNAPSHOT/ejbs-1.0-SNAPSHOT.pom?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ejbs/1.0-SNAPSHOT/ejbs-1.0-SNAPSHOT.pom (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ejbs/1.0-SNAPSHOT/ejbs-1.0-SNAPSHOT.pom Fri Nov 16 04:16:25 2007
@@ -0,0 +1,61 @@
+<?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">
+	<modelVersion>4.0.0</modelVersion>
+	<groupId>root.project</groupId>
+	<artifactId>ejbs</artifactId>
+	<packaging>ejb</packaging>
+	<name>enterprise java beans</name>
+	<parent>
+		<groupId>root</groupId>
+		<artifactId>project</artifactId>
+		<version>1.0-SNAPSHOT</version>
+	</parent>
+	<dependencies>
+		<dependency>
+			<groupId>root.project</groupId>
+			<artifactId>primary-source</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>root.project.projects</groupId>
+			<artifactId>logging</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.geronimo.specs</groupId>
+			<artifactId>geronimo-ejb_2.1_spec</artifactId>
+			<version>1.1</version>
+			<scope>provided</scope>
+		</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/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ejbs/1.0-SNAPSHOT/ejbs-1.0-SNAPSHOT.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ejbs/1.0-SNAPSHOT/ejbs-1.0-SNAPSHOT.pom
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ejbs/1.0-SNAPSHOT/maven-metadata-local.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ejbs/1.0-SNAPSHOT/maven-metadata-local.xml?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ejbs/1.0-SNAPSHOT/maven-metadata-local.xml (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ejbs/1.0-SNAPSHOT/maven-metadata-local.xml Fri Nov 16 04:16:25 2007
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+  <groupId>root.project</groupId>
+  <artifactId>ejbs</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <versioning>
+    <snapshot>
+      <localCopy>true</localCopy>
+    </snapshot>
+    <lastUpdated>20071116101306</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ejbs/1.0-SNAPSHOT/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ejbs/1.0-SNAPSHOT/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ejbs/maven-metadata-local.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ejbs/maven-metadata-local.xml?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ejbs/maven-metadata-local.xml (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ejbs/maven-metadata-local.xml Fri Nov 16 04:16:25 2007
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+  <groupId>root.project</groupId>
+  <artifactId>ejbs</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <versioning>
+    <versions>
+      <version>1.0-SNAPSHOT</version>
+    </versions>
+    <lastUpdated>20071116101306</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ejbs/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/ejbs/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/maven-metadata-local.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/maven-metadata-local.xml?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/maven-metadata-local.xml (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/maven-metadata-local.xml Fri Nov 16 04:16:25 2007
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+  <groupId>root</groupId>
+  <artifactId>project</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <versioning>
+    <versions>
+      <version>1.0-SNAPSHOT</version>
+    </versions>
+    <lastUpdated>20071116101151</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/primary-source/1.0-SNAPSHOT/maven-metadata-local.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/primary-source/1.0-SNAPSHOT/maven-metadata-local.xml?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/primary-source/1.0-SNAPSHOT/maven-metadata-local.xml (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/primary-source/1.0-SNAPSHOT/maven-metadata-local.xml Fri Nov 16 04:16:25 2007
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+  <groupId>root.project</groupId>
+  <artifactId>primary-source</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <versioning>
+    <snapshot>
+      <localCopy>true</localCopy>
+    </snapshot>
+    <lastUpdated>20071116101253</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/primary-source/1.0-SNAPSHOT/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/primary-source/1.0-SNAPSHOT/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/primary-source/1.0-SNAPSHOT/primary-source-1.0-SNAPSHOT.jar
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/primary-source/1.0-SNAPSHOT/primary-source-1.0-SNAPSHOT.jar?rev=595639&view=auto
==============================================================================
Binary file - no diff available.

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/primary-source/1.0-SNAPSHOT/primary-source-1.0-SNAPSHOT.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/primary-source/1.0-SNAPSHOT/primary-source-1.0-SNAPSHOT.pom
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/primary-source/1.0-SNAPSHOT/primary-source-1.0-SNAPSHOT.pom?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/primary-source/1.0-SNAPSHOT/primary-source-1.0-SNAPSHOT.pom (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/primary-source/1.0-SNAPSHOT/primary-source-1.0-SNAPSHOT.pom Fri Nov 16 04:16:25 2007
@@ -0,0 +1,43 @@
+<?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">
+	<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-SNAPSHOT</version>
+	</parent>
+	<dependencies>
+		<dependency>
+			<groupId>org.apache.geronimo.specs</groupId>
+			<artifactId>geronimo-servlet_2.4_spec</artifactId>
+			<version>1.1.1</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>root.project.projects</groupId>
+			<artifactId>logging</artifactId>
+		</dependency>
+	</dependencies>
+</project>

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/primary-source/1.0-SNAPSHOT/primary-source-1.0-SNAPSHOT.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/primary-source/1.0-SNAPSHOT/primary-source-1.0-SNAPSHOT.pom
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/primary-source/maven-metadata-local.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/primary-source/maven-metadata-local.xml?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/primary-source/maven-metadata-local.xml (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/primary-source/maven-metadata-local.xml Fri Nov 16 04:16:25 2007
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+  <groupId>root.project</groupId>
+  <artifactId>primary-source</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <versioning>
+    <versions>
+      <version>1.0-SNAPSHOT</version>
+    </versions>
+    <lastUpdated>20071116101253</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/primary-source/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/primary-source/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/1.0-SNAPSHOT/maven-metadata-local.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/1.0-SNAPSHOT/maven-metadata-local.xml?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/1.0-SNAPSHOT/maven-metadata-local.xml (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/1.0-SNAPSHOT/maven-metadata-local.xml Fri Nov 16 04:16:25 2007
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+  <groupId>root.project</groupId>
+  <artifactId>projects</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <versioning>
+    <snapshot>
+      <localCopy>true</localCopy>
+    </snapshot>
+    <lastUpdated>20071116101151</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/1.0-SNAPSHOT/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/1.0-SNAPSHOT/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/1.0-SNAPSHOT/projects-1.0-SNAPSHOT.pom
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/1.0-SNAPSHOT/projects-1.0-SNAPSHOT.pom?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/1.0-SNAPSHOT/projects-1.0-SNAPSHOT.pom (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/1.0-SNAPSHOT/projects-1.0-SNAPSHOT.pom Fri Nov 16 04:16:25 2007
@@ -0,0 +1,34 @@
+<?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">
+   <modelVersion>4.0.0</modelVersion>
+   <groupId>root.project</groupId>
+   <artifactId>projects</artifactId>
+   <packaging>pom</packaging>
+   <name>sub projects</name>
+   <parent>
+      <groupId>root</groupId>
+      <artifactId>project</artifactId>
+      <version>1.0-SNAPSHOT</version>
+   </parent>
+   <modules>
+      <module>logging</module>
+   </modules>
+</project>

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/1.0-SNAPSHOT/projects-1.0-SNAPSHOT.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/1.0-SNAPSHOT/projects-1.0-SNAPSHOT.pom
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/logging/1.0-SNAPSHOT/logging-1.0-SNAPSHOT.jar
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/logging/1.0-SNAPSHOT/logging-1.0-SNAPSHOT.jar?rev=595639&view=auto
==============================================================================
Binary file - no diff available.

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/logging/1.0-SNAPSHOT/logging-1.0-SNAPSHOT.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/logging/1.0-SNAPSHOT/logging-1.0-SNAPSHOT.pom
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/logging/1.0-SNAPSHOT/logging-1.0-SNAPSHOT.pom?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/logging/1.0-SNAPSHOT/logging-1.0-SNAPSHOT.pom (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/logging/1.0-SNAPSHOT/logging-1.0-SNAPSHOT.pom Fri Nov 16 04:16:25 2007
@@ -0,0 +1,31 @@
+<?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">
+   <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-SNAPSHOT</version>
+   </parent>
+</project>

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/logging/1.0-SNAPSHOT/logging-1.0-SNAPSHOT.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/logging/1.0-SNAPSHOT/logging-1.0-SNAPSHOT.pom
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/logging/1.0-SNAPSHOT/maven-metadata-local.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/logging/1.0-SNAPSHOT/maven-metadata-local.xml?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/logging/1.0-SNAPSHOT/maven-metadata-local.xml (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/logging/1.0-SNAPSHOT/maven-metadata-local.xml Fri Nov 16 04:16:25 2007
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+  <groupId>root.project.projects</groupId>
+  <artifactId>logging</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <versioning>
+    <snapshot>
+      <localCopy>true</localCopy>
+    </snapshot>
+    <lastUpdated>20071116101159</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/logging/1.0-SNAPSHOT/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/logging/1.0-SNAPSHOT/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/logging/maven-metadata-local.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/logging/maven-metadata-local.xml?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/logging/maven-metadata-local.xml (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/logging/maven-metadata-local.xml Fri Nov 16 04:16:25 2007
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+  <groupId>root.project.projects</groupId>
+  <artifactId>logging</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <versioning>
+    <versions>
+      <version>1.0-SNAPSHOT</version>
+    </versions>
+    <lastUpdated>20071116101159</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/logging/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/logging/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/maven-metadata-local.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/maven-metadata-local.xml?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/maven-metadata-local.xml (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/maven-metadata-local.xml Fri Nov 16 04:16:25 2007
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+  <groupId>root.project</groupId>
+  <artifactId>projects</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <versioning>
+    <versions>
+      <version>1.0-SNAPSHOT</version>
+    </versions>
+    <lastUpdated>20071116101151</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/projects/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/1.0-SNAPSHOT/maven-metadata-local.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/1.0-SNAPSHOT/maven-metadata-local.xml?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/1.0-SNAPSHOT/maven-metadata-local.xml (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/1.0-SNAPSHOT/maven-metadata-local.xml Fri Nov 16 04:16:25 2007
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+  <groupId>root.project</groupId>
+  <artifactId>servlets</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <versioning>
+    <snapshot>
+      <localCopy>true</localCopy>
+    </snapshot>
+    <lastUpdated>20071116101253</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/1.0-SNAPSHOT/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/1.0-SNAPSHOT/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/1.0-SNAPSHOT/servlets-1.0-SNAPSHOT.pom
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/1.0-SNAPSHOT/servlets-1.0-SNAPSHOT.pom?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/1.0-SNAPSHOT/servlets-1.0-SNAPSHOT.pom (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/1.0-SNAPSHOT/servlets-1.0-SNAPSHOT.pom Fri Nov 16 04:16:25 2007
@@ -0,0 +1,35 @@
+<?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">
+   <modelVersion>4.0.0</modelVersion>
+   <groupId>root.project</groupId>
+   <artifactId>servlets</artifactId>
+   <packaging>pom</packaging>
+   <name>servlets</name>
+   <parent>
+      <groupId>root</groupId>
+      <artifactId>project</artifactId>
+      <version>1.0-SNAPSHOT</version>
+   </parent>
+   <modules>
+      <module>servlet</module>
+   </modules>
+</project>
+

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/1.0-SNAPSHOT/servlets-1.0-SNAPSHOT.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/1.0-SNAPSHOT/servlets-1.0-SNAPSHOT.pom
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/maven-metadata-local.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/maven-metadata-local.xml?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/maven-metadata-local.xml (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/maven-metadata-local.xml Fri Nov 16 04:16:25 2007
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+  <groupId>root.project</groupId>
+  <artifactId>servlets</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <versioning>
+    <versions>
+      <version>1.0-SNAPSHOT</version>
+    </versions>
+    <lastUpdated>20071116101253</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/servlet/1.0-SNAPSHOT/maven-metadata-local.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/servlet/1.0-SNAPSHOT/maven-metadata-local.xml?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/servlet/1.0-SNAPSHOT/maven-metadata-local.xml (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/servlet/1.0-SNAPSHOT/maven-metadata-local.xml Fri Nov 16 04:16:25 2007
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+  <groupId>root.project.servlets</groupId>
+  <artifactId>servlet</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <versioning>
+    <snapshot>
+      <localCopy>true</localCopy>
+    </snapshot>
+    <lastUpdated>20071116101257</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/servlet/1.0-SNAPSHOT/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/servlet/1.0-SNAPSHOT/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/servlet/1.0-SNAPSHOT/servlet-1.0-SNAPSHOT.pom
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/servlet/1.0-SNAPSHOT/servlet-1.0-SNAPSHOT.pom?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/servlet/1.0-SNAPSHOT/servlet-1.0-SNAPSHOT.pom (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/servlet/1.0-SNAPSHOT/servlet-1.0-SNAPSHOT.pom Fri Nov 16 04:16:25 2007
@@ -0,0 +1,38 @@
+<?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">
+   <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-SNAPSHOT</version>
+   </parent>
+   <dependencies>
+      <dependency>
+         <groupId>root.project</groupId>
+         <artifactId>primary-source</artifactId>
+         <scope>provided</scope>
+      </dependency>
+   </dependencies>
+</project>

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/servlet/1.0-SNAPSHOT/servlet-1.0-SNAPSHOT.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/servlet/1.0-SNAPSHOT/servlet-1.0-SNAPSHOT.pom
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/servlet/1.0-SNAPSHOT/servlet-1.0-SNAPSHOT.war
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/servlet/1.0-SNAPSHOT/servlet-1.0-SNAPSHOT.war?rev=595639&view=auto
==============================================================================
Binary file - no diff available.

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/servlet/1.0-SNAPSHOT/servlet-1.0-SNAPSHOT.war
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/servlet/maven-metadata-local.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/servlet/maven-metadata-local.xml?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/servlet/maven-metadata-local.xml (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/servlet/maven-metadata-local.xml Fri Nov 16 04:16:25 2007
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+  <groupId>root.project.servlets</groupId>
+  <artifactId>servlet</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <versioning>
+    <versions>
+      <version>1.0-SNAPSHOT</version>
+    </versions>
+    <lastUpdated>20071116101257</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/servlet/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/m2repo/root/project/servlets/servlet/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Copied: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ear/pom.xml (from r595482, maven/plugins/branches/MECLIPSE-333/src/test/resources/projects/j2ee-simple/ear/pom.xml)
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ear/pom.xml?p2=maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ear/pom.xml&p1=maven/plugins/branches/MECLIPSE-333/src/test/resources/projects/j2ee-simple/ear/pom.xml&r1=595482&r2=595639&rev=595639&view=diff
==============================================================================
--- maven/plugins/branches/MECLIPSE-333/src/test/resources/projects/j2ee-simple/ear/pom.xml (original)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ear/pom.xml Fri Nov 16 04:16:25 2007
@@ -1,14 +1,32 @@
-<project>
+<?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">
    <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>
+      <version>1.0-SNAPSHOT</version>
    </parent>
    <dependencies>
       <dependency>

Copied: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/pom.xml (from r595482, maven/plugins/branches/MECLIPSE-333/src/test/resources/projects/j2ee-simple/ejbs/pom.xml)
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/pom.xml?p2=maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/pom.xml&p1=maven/plugins/branches/MECLIPSE-333/src/test/resources/projects/j2ee-simple/ejbs/pom.xml&r1=595482&r2=595639&rev=595639&view=diff
==============================================================================
--- maven/plugins/branches/MECLIPSE-333/src/test/resources/projects/j2ee-simple/ejbs/pom.xml (original)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/pom.xml Fri Nov 16 04:16:25 2007
@@ -1,14 +1,32 @@
-<project>
+<?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">
 	<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>
+		<version>1.0-SNAPSHOT</version>
 	</parent>
 	<dependencies>
 		<dependency>
@@ -20,9 +38,9 @@
 			<artifactId>logging</artifactId>
 		</dependency>
 		<dependency>
-			<groupId>eclipsetest</groupId>
-			<artifactId>direct-provided</artifactId>
-			<version>1.0</version>
+			<groupId>org.apache.geronimo.specs</groupId>
+			<artifactId>geronimo-ejb_2.1_spec</artifactId>
+			<version>1.1</version>
 			<scope>provided</scope>
 		</dependency>
 	</dependencies>

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/Hello.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/Hello.java?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/Hello.java (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/Hello.java Fri Nov 16 04:16:25 2007
@@ -0,0 +1,28 @@
+/*
+ * 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.
+ */
+package hello;
+
+import java.rmi.RemoteException;
+
+import javax.ejb.EJBObject;
+
+public interface Hello extends EJBObject {
+	public String sayHello(String myName) throws RemoteException;
+
+}
\ No newline at end of file

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/Hello.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/Hello.java
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/HelloBean.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/HelloBean.java?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/HelloBean.java (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/HelloBean.java Fri Nov 16 04:16:25 2007
@@ -0,0 +1,45 @@
+/*
+ * 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.
+ */
+package hello;
+
+import javax.ejb.EJBException;
+import javax.ejb.SessionBean;
+import javax.ejb.SessionContext;
+
+public class HelloBean implements SessionBean {
+
+	public void ejbActivate() {
+	}
+
+	public void ejbCreate() {
+	}
+
+	public void ejbPassivate() {
+	}
+
+	public void ejbRemove() {
+	}
+
+	public String sayHello(String myName) throws EJBException {
+		return ("Hello " + myName);
+	}
+
+	public void setSessionContext(SessionContext ctx) {
+	}
+}

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/HelloBean.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/HelloBean.java
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/HelloHome.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/HelloHome.java?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/HelloHome.java (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/HelloHome.java Fri Nov 16 04:16:25 2007
@@ -0,0 +1,28 @@
+/*
+ * 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.
+ */
+package hello;
+
+import java.rmi.RemoteException;
+
+import javax.ejb.CreateException;
+import javax.ejb.EJBHome;
+
+public interface HelloHome extends EJBHome {
+	public Hello create() throws CreateException, RemoteException;
+}
\ No newline at end of file

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/HelloHome.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/HelloHome.java
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/HelloLocal.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/HelloLocal.java?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/HelloLocal.java (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/HelloLocal.java Fri Nov 16 04:16:25 2007
@@ -0,0 +1,26 @@
+/*
+ * 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.
+ */
+package hello;
+
+import javax.ejb.EJBLocalObject;
+
+public interface HelloLocal extends EJBLocalObject {
+	public String sayHello(String myName);
+
+}
\ No newline at end of file

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/HelloLocal.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/HelloLocal.java
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/HelloLocalHome.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/HelloLocalHome.java?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/HelloLocalHome.java (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/HelloLocalHome.java Fri Nov 16 04:16:25 2007
@@ -0,0 +1,26 @@
+/*
+ * 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.
+ */
+package hello;
+
+import javax.ejb.CreateException;
+import javax.ejb.EJBLocalHome;
+
+public interface HelloLocalHome extends EJBLocalHome {
+	public HelloLocal create() throws CreateException;
+}
\ No newline at end of file

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/HelloLocalHome.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/java/hello/HelloLocalHome.java
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Copied: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/resources/META-INF/ejb-jar.xml (from r595482, maven/plugins/branches/MECLIPSE-333/src/test/resources/projects/j2ee-simple/ejbs/src/main/resources/META-INF/ejb-jar.xml)
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/resources/META-INF/ejb-jar.xml?p2=maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/resources/META-INF/ejb-jar.xml&p1=maven/plugins/branches/MECLIPSE-333/src/test/resources/projects/j2ee-simple/ejbs/src/main/resources/META-INF/ejb-jar.xml&r1=595482&r2=595639&rev=595639&view=diff
==============================================================================
--- maven/plugins/branches/MECLIPSE-333/src/test/resources/projects/j2ee-simple/ejbs/src/main/resources/META-INF/ejb-jar.xml (original)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/ejbs/src/main/resources/META-INF/ejb-jar.xml Fri Nov 16 04:16:25 2007
@@ -1,4 +1,22 @@
 <?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.
+-->
 <ejb-jar id="ejb-jar_ID" version="2.1"
 	xmlns="http://java.sun.com/xml/ns/j2ee"
 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

Copied: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/pom.xml (from r595482, maven/plugins/branches/MECLIPSE-333/src/test/resources/projects/j2ee-simple/pom.xml)
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/pom.xml?p2=maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/pom.xml&p1=maven/plugins/branches/MECLIPSE-333/src/test/resources/projects/j2ee-simple/pom.xml&r1=595482&r2=595639&rev=595639&view=diff
==============================================================================
--- maven/plugins/branches/MECLIPSE-333/src/test/resources/projects/j2ee-simple/pom.xml (original)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/pom.xml Fri Nov 16 04:16:25 2007
@@ -1,7 +1,26 @@
-<project>
+<?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">
 	<modelVersion>4.0.0</modelVersion>
 	<groupId>root</groupId>
-	<version>1.0</version>
+	<version>1.0-SNAPSHOT</version>
 	<artifactId>project</artifactId>
 	<packaging>pom</packaging>
 	<name>project</name>
@@ -15,63 +34,64 @@
 	<build>
 		<pluginManagement>
 			<plugins>
+	        <plugin>
+	          <groupId>org.apache.maven.plugins</groupId>
+	          <artifactId>maven-compiler-plugin</artifactId>
+	          <configuration>
+	            <source>1.4</source>
+	            <target>1.4</target>
+	          </configuration>
+	        </plugin>		
 				<plugin>
 					<groupId>org.apache.maven.plugins</groupId>
-					<artifactId>maven-site-plugin</artifactId>
+					<artifactId>maven-eclipse-plugin</artifactId>
 					<configuration>
-						<unzipCommand>/usr/bin/unzip -o > err.txt</unzipCommand>
+						<projectNameTemplate>
+							[artifactId]-[version]
+						</projectNameTemplate>
+						<wtpmanifest>true</wtpmanifest>
+						<wtpapplicationxml>true</wtpapplicationxml>
+						<wtpversion>2.0</wtpversion>
+						<manifest>
+							${basedir}/src/main/resources/META-INF/MANIFEST.MF
+						</manifest>
 					</configuration>
 				</plugin>
 			</plugins>
 		</pluginManagement>
-		<plugins>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-eclipse-plugin</artifactId>
-				<version>test</version>
-				<configuration>
-					<projectNameTemplate>[artifactId]-[version]</projectNameTemplate>
-					<wtpmanifest>true</wtpmanifest>
-					<wtpapplicationxml>true</wtpapplicationxml>
-					<wtpversion>2.0</wtpversion>
-					<manifest>${basedir}/src/main/resources/META-INF/MANIFEST.MF</manifest>
-				</configuration>
-			</plugin>
-
-		</plugins>
 	</build>
 	<dependencyManagement>
 		<dependencies>
 			<dependency>
 				<groupId>root.project.projects</groupId>
 				<artifactId>logging</artifactId>
-				<version>1.0</version>
+				<version>${pom.version}</version>
 			</dependency>
 			<dependency>
 				<groupId>root.project</groupId>
 				<artifactId>primary-source</artifactId>
-				<version>1.0</version>
+				<version>${pom.version}</version>
 			</dependency>
 			<dependency>
 				<groupId>root.project.servlets</groupId>
 				<artifactId>servlet</artifactId>
-				<version>1.0</version>
+				<version>${pom.version}</version>
 				<type>war</type>
 			</dependency>
 			<dependency>
 				<groupId>root.project</groupId>
 				<artifactId>ejbs</artifactId>
-				<version>1.0</version>
+				<version>${pom.version}</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>
-
+    </dependencies>
+  </dependencyManagement>
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file

Copied: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/primary-source/pom.xml (from r595482, maven/plugins/branches/MECLIPSE-333/src/test/resources/projects/j2ee-simple/primary-source/pom.xml)
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/primary-source/pom.xml?p2=maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/primary-source/pom.xml&p1=maven/plugins/branches/MECLIPSE-333/src/test/resources/projects/j2ee-simple/primary-source/pom.xml&r1=595482&r2=595639&rev=595639&view=diff
==============================================================================
--- maven/plugins/branches/MECLIPSE-333/src/test/resources/projects/j2ee-simple/primary-source/pom.xml (original)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/primary-source/pom.xml Fri Nov 16 04:16:25 2007
@@ -1,4 +1,23 @@
-<project>
+<?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">
 	<modelVersion>4.0.0</modelVersion>
 	<groupId>root.project</groupId>
 	<artifactId>primary-source</artifactId>
@@ -7,31 +26,13 @@
 	<parent>
 		<groupId>root</groupId>
 		<artifactId>project</artifactId>
-		<version>1.0</version>
+		<version>1.0-SNAPSHOT</version>
 	</parent>
-	<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>
 	<dependencies>
 		<dependency>
-			<groupId>eclipsetest</groupId>
-			<artifactId>direct-provided</artifactId>
-			<version>1.0</version>
+			<groupId>org.apache.geronimo.specs</groupId>
+			<artifactId>geronimo-servlet_2.4_spec</artifactId>
+			<version>1.1.1</version>
 			<scope>provided</scope>
 		</dependency>
 		<dependency>

Added: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/primary-source/src/main/java/TestServlet.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/primary-source/src/main/java/TestServlet.java?rev=595639&view=auto
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/primary-source/src/main/java/TestServlet.java (added)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/primary-source/src/main/java/TestServlet.java Fri Nov 16 04:16:25 2007
@@ -0,0 +1,32 @@
+/*
+ * 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.
+ */
+import java.io.IOException;
+
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+
+public class TestServlet extends HttpServlet {
+	protected void doGet(HttpServletRequest req, HttpServletResponse resp)
+			throws ServletException, IOException {
+		resp.getWriter().write(
+				"<html><body><h2>Hello World!XXX</h2></body></html>");
+	}
+}

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/primary-source/src/main/java/TestServlet.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/primary-source/src/main/java/TestServlet.java
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Copied: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/projects/logging/pom.xml (from r595482, maven/plugins/branches/MECLIPSE-333/src/test/resources/projects/j2ee-simple/projects/logging/pom.xml)
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/projects/logging/pom.xml?p2=maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/projects/logging/pom.xml&p1=maven/plugins/branches/MECLIPSE-333/src/test/resources/projects/j2ee-simple/projects/logging/pom.xml&r1=595482&r2=595639&rev=595639&view=diff
==============================================================================
--- maven/plugins/branches/MECLIPSE-333/src/test/resources/projects/j2ee-simple/projects/logging/pom.xml (original)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/j2ee-simple/projects/logging/pom.xml Fri Nov 16 04:16:25 2007
@@ -1,4 +1,23 @@
-<project>
+<?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">
    <modelVersion>4.0.0</modelVersion>
    <groupId>root.project.projects</groupId>
    <artifactId>logging</artifactId>
@@ -7,6 +26,6 @@
    <parent>
       <groupId>root.project</groupId>
       <artifactId>projects</artifactId>
-      <version>1.0</version>
+      <version>1.0-SNAPSHOT</version>
    </parent>
 </project>