You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by si...@apache.org on 2009/04/29 07:20:55 UTC

svn commit: r769664 [6/9] - in /maven/components/branches/MNG-2766/maven-core/src/test: resources-project-builder/ resources-project-builder/basedir-aligned-interpolation/ resources-project-builder/basedir-interpolation/ resources-project-builder/baseu...

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/single-configuration-inheritance/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/single-configuration-inheritance/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/single-configuration-inheritance/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/single-configuration-inheritance/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,41 @@
+<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.mortbay.jetty</groupId>
+    <artifactId>jetty-parent</artifactId>
+    <version>7</version>
+      <relativePath>jetty-parent.xml</relativePath>
+  </parent>
+  <groupId>org.mortbay.jetty</groupId>
+  <artifactId>project</artifactId>
+  <packaging>pom</packaging>
+  <name>Jetty Server Project</name>
+  <version>6.1.12</version>
+  <build>
+    <defaultGoal>install</defaultGoal>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-enforcer-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>enforce-java</id>
+            <goals>
+              <goal>enforce</goal>
+            </goals>
+            <configuration>
+              <rules>
+                <requireMavenVersion>
+                  <version>2.0.6</version>
+                </requireMavenVersion>
+                <requireJavaVersion>
+                  <version>[1.4,)</version>
+                </requireJavaVersion>
+              </rules>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/unc-path/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/unc-path/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/unc-path/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/unc-path/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,41 @@
+<?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>org.apache.maven.its.mng3621</groupId>
+  <artifactId>test-parent</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <packaging>pom</packaging>
+
+  <name>MNG-3621 :: Parent</name>
+  <description>Test inheritance of UNC paths</description>
+
+  <modules>
+    <module>child</module>
+  </modules>
+
+  <distributionManagement>
+    <site>
+      <id>site</id>
+      <url>file:////host/site/</url>
+    </site>
+  </distributionManagement>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/unc-path/sub/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/unc-path/sub/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/unc-path/sub/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/unc-path/sub/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,57 @@
+<?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>
+
+<parent>
+  <groupId>org.apache.maven.its.mng3621</groupId>
+  <artifactId>test-parent</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  </parent>
+  <artifactId>test-child</artifactId>
+
+  <name>MNG-3621 :: Child</name>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.its.plugins</groupId>
+        <artifactId>maven-it-plugin-expression</artifactId>
+        <version>2.1-SNAPSHOT</version>
+        <configuration>
+          <outputFile>target/pom.properties</outputFile>
+          <expressions>
+            <expression>project/distributionManagement/site/url</expression>
+          </expressions>
+        </configuration>
+        <executions>
+          <execution>
+            <id>test</id>
+            <phase>validate</phase>
+            <goals>
+              <goal>eval</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>
+

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/unprefixed-expression-interpolation/child/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/unprefixed-expression-interpolation/child/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/unprefixed-expression-interpolation/child/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/unprefixed-expression-interpolation/child/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,104 @@
+<?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>
+
+  <parent>
+     <groupId>org.apache.maven.its.mng3831</groupId>
+     <artifactId>parent</artifactId>
+     <version>1.0</version>
+  </parent>
+
+  <groupId>org.apache.maven.its.mng3831.child</groupId>
+  <artifactId>child</artifactId>
+  <version>2.0-alpha-1</version>
+  <packaging>jar</packaging>
+
+  <name>child-name</name>
+  <description>child-desc</description>
+  <url>http://child.org/</url>
+  <inceptionYear>2008</inceptionYear>
+  <organization>
+    <name>child-org-name</name>
+  </organization>
+
+  <prerequisites>
+    <maven>2.0.0</maven>
+  </prerequisites>
+
+  <scm>
+    <url>http://scm.org/</url>
+  </scm>
+  <issueManagement>
+    <url>http://issue.org/</url>
+  </issueManagement>
+  <ciManagement>
+    <url>http://ci.org/</url>
+  </ciManagement>
+  <distributionManagement>
+    <repository>
+      <id>maven-core-it</id>
+      <name>child-dist-repo</name>
+      <url>http://dist.org/</url>
+    </repository>
+    <site>
+      <id>maven-core-it</id>
+      <name>child-site</name>
+      <url>http://site.org/</url>
+    </site>
+  </distributionManagement>
+
+  <properties>
+    <!-- this is where we collect all the interpolated values for the POM dump -->
+    <projectDir>${basedir}</projectDir>
+    <projectGroupId>${groupId}</projectGroupId>
+    <projectArtifactId>${artifactId}</projectArtifactId>
+    <projectVersion>${version}</projectVersion>
+    <projectPackaging>${packaging}</projectPackaging>
+    <projectName>${name}</projectName>
+    <projectDesc>${description}</projectDesc>
+    <projectUrl>${url}</projectUrl>
+    <projectYear>${inceptionYear}</projectYear>
+    <projectOrgName>${organization.name}</projectOrgName>
+    <projectPrereqMvn>${prerequisites.maven}</projectPrereqMvn>
+    <projectScmUrl>${scm.url}</projectScmUrl>
+    <projectIssueUrl>${issueManagement.url}</projectIssueUrl>
+    <projectCiUrl>${ciManagement.url}</projectCiUrl>
+    <projectDistRepoName>${distributionManagement.repository.name}</projectDistRepoName>
+    <projectDistRepoUrl>${distributionManagement.repository.url}</projectDistRepoUrl>
+    <projectDistSiteUrl>${distributionManagement.site.url}</projectDistSiteUrl>
+    <projectBuildOut>${build.outputDirectory}</projectBuildOut>
+    <projectSiteOut>${reporting.outputDirectory}</projectSiteOut>
+    <parentGroupId>${parent.groupId}</parentGroupId>
+    <parentArtifactId>${parent.artifactId}</parentArtifactId>
+    <parentVersion>${parent.version}</parentVersion>
+  </properties>
+
+  <build>
+    <outputDirectory>target/bin</outputDirectory>
+  </build>
+
+  <reporting>
+    <outputDirectory>target/doc</outputDirectory>
+  </reporting>
+            
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/unprefixed-expression-interpolation/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/unprefixed-expression-interpolation/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/unprefixed-expression-interpolation/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/unprefixed-expression-interpolation/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,36 @@
+<?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>org.apache.maven.its.mng3831</groupId>
+  <artifactId>parent</artifactId>
+  <version>1.0</version>
+  <packaging>pom</packaging>
+
+  <name>Maven Integration Test :: MNG-3831</name> 
+  <description>Test POM interpolation with expressions of the form $ { * } (ugly but real)</description>
+
+  <modules>
+    <module>parent/child</module>
+  </modules>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-append/child/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-append/child/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-append/child/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-append/child/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,64 @@
+<?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>
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.maven.its.mng2006</groupId>
+    <artifactId>parent</artifactId>
+    <version>0.1</version>
+    <relativePath>../parent/pom.xml</relativePath>
+  </parent>
+
+  <artifactId>child</artifactId>
+  <name>Child Project</name>
+  <description>
+    Test that inheritance of those URLs which automatically append the child's artifact id take the child's
+    relative location to the parent into account.
+  </description>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.its.plugins</groupId>
+        <artifactId>maven-it-plugin-expression</artifactId>
+        <version>2.1-SNAPSHOT</version>
+        <executions>
+          <execution>
+            <phase>validate</phase>
+            <goals>
+              <goal>eval</goal>
+            </goals>
+            <configuration>
+              <outputFile>target/pom.properties</outputFile>
+              <expressions>
+                <expression>project/url</expression>
+                <expression>project/scm</expression>
+                <expression>project/distributionManagement/site</expression>
+              </expressions>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-append/parent/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-append/parent/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-append/parent/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-append/parent/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,53 @@
+<?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>
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.apache.maven.its.mng2006</groupId>
+  <artifactId>parent</artifactId>
+  <version>0.1</version>
+  <packaging>pom</packaging>
+
+  <name>Maven Integration Test :: MNG-2006</name> 
+  <description>
+    Test that inheritance of those URLs which automatically append the child's artifact id take the child's
+    relative location to the parent into account.
+  </description>
+
+  <modules>
+    <module>../child</module>
+  </modules>
+
+  <url>http://project.url/parent</url>
+
+  <scm>
+    <url>http://viewvc.project.url/parent</url>
+    <connection>http://scm.project.url/parent</connection>
+    <developerConnection>https://scm.project.url/parent</developerConnection>
+  </scm>
+  <distributionManagement>
+    <site>
+      <url>http://site.project.url/parent</url>
+      <id>parent.site</id>
+    </site>
+  </distributionManagement>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-inheritance/another-parent/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-inheritance/another-parent/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-inheritance/another-parent/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-inheritance/another-parent/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,36 @@
+<?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>
+  <modelVersion>4.0.0</modelVersion>
+
+  <!-- NOTE: The base directory name of this project deliberately does not match its artifact id! -->
+
+  <parent>
+    <groupId>org.apache.maven.its.mng3846</groupId>
+    <artifactId>parent</artifactId>
+    <version>0.1</version>
+  </parent>
+
+  <artifactId>ap</artifactId>
+  <packaging>pom</packaging>
+  <name>Another Parent to test multi-level URL adjustment</name>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-inheritance/another-parent/sub/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-inheritance/another-parent/sub/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-inheritance/another-parent/sub/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-inheritance/another-parent/sub/pom.xml Wed Apr 29 05:20:38 2009
@@ -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>
+  <modelVersion>4.0.0</modelVersion>
+
+  <!-- NOTE: The base directory name of this project deliberately does not match its artifact id! -->
+
+  <parent>
+    <groupId>org.apache.maven.its.mng3846</groupId>
+    <artifactId>ap</artifactId>
+    <version>0.1</version>
+  </parent>
+
+  <artifactId>child</artifactId>
+  <name>Child Project</name>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-inheritance/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-inheritance/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-inheritance/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-inheritance/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,74 @@
+<?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>
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.apache.maven.its.mng3846</groupId>
+  <artifactId>parent</artifactId>
+  <version>0.1</version>
+  <packaging>pom</packaging>
+
+  <name>Maven Integration Test :: MNG-3846</name> 
+  <description>
+    Test that inheritance of certain URLs automatically appends the child's artifact id.
+  </description>
+
+  <url>http://parent.url/</url>
+  <organization>
+    <name>parent-org</name>
+    <url>http://parent.url/org/</url>
+  </organization>
+  <licenses>
+    <license>
+      <name>parent-license</name>
+      <url>http://parent.url/license.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+
+  <scm>
+    <url>http://parent.url/viewvc</url>
+    <connection>http://parent.url/scm</connection>
+    <developerConnection>https://parent.url/scm</developerConnection>
+  </scm>
+  <issueManagement>
+    <url>http://parent.url/issues</url>
+  </issueManagement>
+  <ciManagement>
+    <url>http://parent.url/ci</url>
+  </ciManagement>
+  <distributionManagement>
+    <repository>
+      <url>http://parent.url/dist</url>
+      <id>parent.distros</id>
+    </repository>
+    <snapshotRepository>
+      <url>http://parent.url/snaps</url>
+      <id>parent.snaps</id>
+    </snapshotRepository>
+    <site>
+      <url>http://parent.url/site</url>
+      <id>parent.site</id>
+    </site>
+    <downloadUrl>http://parent.url/download</downloadUrl>
+  </distributionManagement>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-inheritance/sub/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-inheritance/sub/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-inheritance/sub/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-inheritance/sub/pom.xml Wed Apr 29 05:20:38 2009
@@ -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>
+  <modelVersion>4.0.0</modelVersion>
+
+  <!-- NOTE: The base directory name of this project deliberately does not match its artifact id! -->
+
+  <parent>
+    <groupId>org.apache.maven.its.mng3846</groupId>
+    <artifactId>parent</artifactId>
+    <version>0.1</version>
+  </parent>
+
+  <artifactId>child</artifactId>
+  <name>Child Project</name>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-no-decoding/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-no-decoding/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-no-decoding/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/url-no-decoding/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,64 @@
+<?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>
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.apache.maven.its.mng4116</groupId>
+  <artifactId>test</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <packaging>jar</packaging>
+
+  <name>Maven Integration Test :: MNG-4116</name> 
+  <description>
+    Test that the project builder does not decode URLs (which must be done by the transport layer instead).
+  </description>
+
+  <!-- some URLs using percent-encoded characters -->
+  <url>http://maven.apache.org/spacy%20path</url>
+  <scm>
+    <connection>scm:svn:svn+ssh://svn.apache.org/spacy%20path</connection>
+    <developerConnection>scm:svn:svn+ssh://svn.apache.org/spacy%20path</developerConnection>
+    <url>http://svn.apache.org/viewvc/spacy%20path</url>
+  </scm>
+  <issueManagement>
+    <system>none</system>
+    <url>http://issues.apache.org/spacy%20path</url>
+  </issueManagement>
+  <ciManagement>
+    <system>none</system>
+    <url>http://ci.apache.org/spacy%20path</url>
+  </ciManagement>
+  <distributionManagement>
+    <repository>
+      <id>dist</id>
+      <url>scm:svn:svn+ssh://dist.apache.org/spacy%20path</url>
+    </repository>
+    <snapshotRepository>
+      <id>snap</id>
+      <url>scm:svn:svn+ssh://snap.apache.org/spacy%20path</url>
+    </snapshotRepository>
+    <site>
+      <id>site</id>
+      <url>scm:svn:svn+ssh://site.apache.org/spacy%20path</url>
+    </site>
+  </distributionManagement>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/xml-coalesce-text/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/xml-coalesce-text/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/xml-coalesce-text/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/xml-coalesce-text/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,567 @@
+<?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>
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.apache.maven.its.mng3839</groupId>
+  <artifactId>coreit</artifactId>
+  <version>0.1</version>
+  <packaging>jar</packaging>
+
+  <name>Maven Integration Test :: MNG-3839</name> 
+  <description>
+    Test that POM parsing properly coalesces text data.
+  </description>
+
+  <properties>
+    <!--
+    This checks the coalescing of CHARACTERS and CDATA events. Note that inner whitespace must be retained.
+    -->
+    <prop0>A <![CDATA[ Test ]]> Project<![CDATA[ ]]>Property</prop0>
+
+    <!--
+    This checks the coalescing of CHARACTERS events that are interleaved with comments. Note that inner whitespace
+    formed by whitespace-only events must be retained.
+    -->
+    <prop1><!-- X -->That's<!-- X --> <!-- X -->a<!-- X --> <!-- X -->test!<!-- X --></prop1>
+
+    <!--
+    This checks the coalescing of CHARACTERS events which would otherwise be reported in chunks of the internal parser
+    buffer size (usually 4 or 8 KB). The text block is designed such that its length is exactly 32 KB after leading
+    and traling whitespace has been removed and all line terminators have been removed.
+    -->
+    <prop2>
+00 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+01 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+02 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+03 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+04 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+05 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+06 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+07 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+08 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+09 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+10 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+11 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+12 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+13 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+14 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+15 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+16 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+17 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+18 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+19 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+20 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+21 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+22 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+23 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+24 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+25 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+26 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+27 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+28 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+29 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+30 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+31 KB     1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+0         1         2         3         4         5         6  X
+    </prop2>
+  </properties>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/xml-markup-interpolation/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/xml-markup-interpolation/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/xml-markup-interpolation/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/xml-markup-interpolation/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,41 @@
+<?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>
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.apache.maven.its.mng3924</groupId>
+  <artifactId>test</artifactId>
+  <version>0.1-SNAPSHOT</version>
+  <packaging>jar</packaging>
+
+  <name>Maven Integration Test :: MNG-3924</name> 
+  <description>
+    Test that interpolation of properties that resolve to XML markup doesn't crash the project builder.
+  </description>
+
+  <properties>
+    <!-- That's the property containing escaped XML markup -->
+    <xmlMarkup>&lt;?xml version='1.0'?&gt;Tom&amp;Jerry</xmlMarkup>
+    <!-- That's a property where the above property will be resolved -->
+    <xmlTest>${xmlMarkup}</xmlTest>
+  </properties>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/xml-whitespace/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/xml-whitespace/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/xml-whitespace/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/xml-whitespace/pom.xml Wed Apr 29 05:20:38 2009
@@ -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>
+  <modelVersion>4.0.0</modelVersion>
+
+  <!-- NOTE: The ugly formatting is essential part of this test! -->
+  <groupId>
+    org.apache.maven.its.mng4070
+  </groupId>
+  <artifactId>
+    parent
+  </artifactId>
+  <version>
+    1.0
+  </version>
+  <packaging>
+    pom
+  </packaging>
+
+  <name>Maven Integration Test :: MNG-4070</name>
+  <description>
+    Test that whitespace around artifact coordinates does not change artifact identity.
+  </description>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/xml-whitespace/sub/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/xml-whitespace/sub/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/xml-whitespace/sub/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/xml-whitespace/sub/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,49 @@
+<?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>
+  <modelVersion>4.0.0</modelVersion>
+
+  <!-- NOTE: The ugly formatting is essential part of this test! -->
+  <parent>
+    <groupId>   org.apache.maven.its.mng4070   </groupId>
+    <artifactId>  parent  </artifactId>
+    <version>  1.0  </version>
+  </parent>
+
+  <artifactId>subproject</artifactId>
+  <version>1.0</version>
+  <packaging>jar</packaging>
+
+  <name>Maven Integration Test :: MNG-4070 :: Child</name> 
+  <description>
+    Test that whitespace around artifact coordinates does not change artifact identity.
+  </description>
+
+  <dependencies>
+    <dependency>
+      <!-- NOTE: The ugly formatting is essential part of this test! -->
+      <groupId>   org.apache.maven.its.mng4070   </groupId>
+      <artifactId>  a  </artifactId>
+      <version>  0.1  </version>
+    </dependency>
+  </dependencies>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/canonical-pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/canonical-pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/canonical-pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/canonical-pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<!--
+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>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven</groupId>
+  <artifactId>maven-core</artifactId>
+  <name>Maven</name>
+  <version>2.0-SNAPSHOT</version>
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-plexus-plugin</artifactId>
+        <version>1.0</version>
+        <configuration>
+          <plexusConfiguration>src/conf/plexus.conf</plexusConfiguration>
+          <plexusConfigurationPropertiesFile>src/conf/plexus.properties</plexusConfigurationPropertiesFile>
+          <plexusApplicationName>Continuum</plexusApplicationName>
+        </configuration>
+        <executions>
+          <execution>
+            <goals>
+              <goal>plexus:runtime</goal>
+            </goals>
+            <configuration>
+              <plexusApplicationName>ContinuumPro</plexusApplicationName>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/dependencyManagement-pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/dependencyManagement-pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/dependencyManagement-pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/dependencyManagement-pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven</groupId>
+  <artifactId>maven-core</artifactId>
+  <name>Maven</name>
+  <version>2.0-SNAPSHOT</version>
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>maven-test</groupId>
+        <artifactId>maven-test-b</artifactId>
+        <version>1.0</version>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-plexus-plugin</artifactId>
+        <version>1.0</version>
+        <configuration>
+          <plexusConfiguration>src/conf/plexus.conf</plexusConfiguration>
+          <plexusConfigurationPropertiesFile>src/conf/plexus.properties</plexusConfigurationPropertiesFile>
+          <plexusApplicationName>Continuum</plexusApplicationName>
+        </configuration>
+        <executions>
+          <execution>
+            <goals>
+              <goal>plexus:runtime</goal>
+            </goals>
+            <configuration>
+              <plexusApplicationName>ContinuumPro</plexusApplicationName>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/distributionManagement-pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/distributionManagement-pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/distributionManagement-pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/distributionManagement-pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<!--
+  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>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven</groupId>
+  <artifactId>maven-core</artifactId>
+  <name>Maven</name>
+  <version>2.0-SNAPSHOT</version>
+  <distributionManagement>
+    <snapshotRepository>
+      <id>repo-id</id>
+      <name>my snapshot repository</name>
+      <url>file:///path/to/snapshot/repo</url>
+    </snapshotRepository>
+    <repository>
+      <id>repo-id2</id>
+      <name>my repository</name>
+      <url>file:///path/to/repo</url>
+    </repository>
+  </distributionManagement>
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-a-1.0.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-a-1.0.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-a-1.0.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-a-1.0.jar Wed Apr 29 05:20:38 2009
@@ -0,0 +1 @@
+foo

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-a-1.1.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-a-1.1.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-a-1.1.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-a-1.1.jar Wed Apr 29 05:20:38 2009
@@ -0,0 +1 @@
+foo

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-b-1.0.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-b-1.0.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-b-1.0.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-b-1.0.jar Wed Apr 29 05:20:38 2009
@@ -0,0 +1 @@
+foo

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-b-1.1.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-b-1.1.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-b-1.1.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-b-1.1.jar Wed Apr 29 05:20:38 2009
@@ -0,0 +1 @@
+foo

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-c-1.0.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-c-1.0.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-c-1.0.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-c-1.0.jar Wed Apr 29 05:20:38 2009
@@ -0,0 +1 @@
+foo

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-c-1.1.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-c-1.1.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-c-1.1.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-c-1.1.jar Wed Apr 29 05:20:38 2009
@@ -0,0 +1 @@
+foo

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-d-1.0.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-d-1.0.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-d-1.0.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-d-1.0.jar Wed Apr 29 05:20:38 2009
@@ -0,0 +1 @@
+foo

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-d-1.1.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-d-1.1.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-d-1.1.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-d-1.1.jar Wed Apr 29 05:20:38 2009
@@ -0,0 +1 @@
+foo

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-d-1.2.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-d-1.2.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-d-1.2.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/jars/maven-test-d-1.2.jar Wed Apr 29 05:20:38 2009
@@ -0,0 +1 @@
+foo

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/poms/maven-test-a-1.0.pom
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/poms/maven-test-a-1.0.pom?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/poms/maven-test-a-1.0.pom (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/poms/maven-test-a-1.0.pom Wed Apr 29 05:20:38 2009
@@ -0,0 +1,14 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven-test</groupId>
+  <artifactId>maven-test-a</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0</version>
+  <repositories>
+    <repository>
+      <id>central</id>
+      <name>Fake Maven Central Repository</name>
+      <url>file://dummy</url>
+    </repository>
+  </repositories>
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/poms/maven-test-a-1.1.pom
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/poms/maven-test-a-1.1.pom?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/poms/maven-test-a-1.1.pom (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/poms/maven-test-a-1.1.pom Wed Apr 29 05:20:38 2009
@@ -0,0 +1,14 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven-test</groupId>
+  <artifactId>maven-test-a</artifactId>
+  <packaging>jar</packaging>
+  <version>1.1</version>
+  <repositories>
+    <repository>
+      <id>central</id>
+      <name>Fake Maven Central Repository</name>
+      <url>file://dummy</url>
+    </repository>
+  </repositories>
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/poms/maven-test-b-1.0.pom
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/poms/maven-test-b-1.0.pom?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/poms/maven-test-b-1.0.pom (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/poms/maven-test-b-1.0.pom Wed Apr 29 05:20:38 2009
@@ -0,0 +1,7 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven-test</groupId>
+  <artifactId>maven-test-b</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0</version>
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/poms/maven-test-b-1.1.pom
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/poms/maven-test-b-1.1.pom?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/poms/maven-test-b-1.1.pom (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/imports-repo/t01/maven-test/poms/maven-test-b-1.1.pom Wed Apr 29 05:20:38 2009
@@ -0,0 +1,7 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven-test</groupId>
+  <artifactId>maven-test-b</artifactId>
+  <packaging>jar</packaging>
+  <version>1.1</version>
+</project>
\ No newline at end of file