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 [8/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/inheritance-repo/t07/maven-test/jars/t07-d-1.2.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t07/maven-test/jars/t07-d-1.2.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t07/maven-test/jars/t07-d-1.2.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t07/maven-test/jars/t07-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/inheritance-repo/t07/maven-test/poms/t07-a-1.0.pom
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t07/maven-test/poms/t07-a-1.0.pom?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t07/maven-test/poms/t07-a-1.0.pom (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t07/maven-test/poms/t07-a-1.0.pom Wed Apr 29 05:20:38 2009
@@ -0,0 +1,23 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven-test</groupId>
+  <artifactId>t07-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>
+  <dependencies>
+    <dependency>
+      <groupId>maven-test</groupId>
+      <artifactId>t07-b</artifactId>
+      <version>1.0</version>
+      <type>jar</type>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file

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

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

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t07/maven-test/poms/t07-c-1.0.pom
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t07/maven-test/poms/t07-c-1.0.pom?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t07/maven-test/poms/t07-c-1.0.pom (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t07/maven-test/poms/t07-c-1.0.pom Wed Apr 29 05:20:38 2009
@@ -0,0 +1,17 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven-test</groupId>
+  <artifactId>t07-c</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0</version>
+  <dependencies>
+    <dependency>
+      <groupId>maven-test</groupId>
+      <artifactId>t07-d</artifactId>
+      <version>1.1</version>
+      <type>jar</type>
+      <scope>compile</scope>
+      <optional>true</optional>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t07/maven-test/poms/t07-d-1.0.pom
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t07/maven-test/poms/t07-d-1.0.pom?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t07/maven-test/poms/t07-d-1.0.pom (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t07/maven-test/poms/t07-d-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>t07-d</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/inheritance-repo/t07/maven-test/poms/t07-d-1.1.pom
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t07/maven-test/poms/t07-d-1.1.pom?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t07/maven-test/poms/t07-d-1.1.pom (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t07/maven-test/poms/t07-d-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>t07-d</artifactId>
+  <packaging>jar</packaging>
+  <version>1.1</version>
+</project>
\ No newline at end of file

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

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t07/p0/p1/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t07/p0/p1/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t07/p0/p1/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t07/p0/p1/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,54 @@
+<project>
+  <parent>
+    <artifactId>p0</artifactId>
+    <groupId>maven-t07</groupId>
+    <version>1.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven-t07</groupId>
+  <artifactId>p1</artifactId>
+  <packaging>pom</packaging>
+  <name>p1</name>
+  <version>1.0</version>
+  <scm>
+    <url>scm-url</url>
+  </scm>
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>maven-test</groupId>
+        <artifactId>t07-b</artifactId>
+        <version>1.0</version>
+      </dependency>
+      <dependency>
+        <groupId>maven-test</groupId>
+        <artifactId>t07-d</artifactId>
+        <version>1.0</version>
+        <scope>test</scope>
+        <optional>false</optional>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+  <dependencies>
+    <dependency>
+      <groupId>maven-test</groupId>
+      <artifactId>t07-a</artifactId>
+      <version>1.0</version>
+    </dependency>
+    <dependency>
+      <groupId>maven-test</groupId>
+      <artifactId>t07-c</artifactId>
+      <version>1.0</version>
+    </dependency>
+  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <configuration>
+          <tasks><echo>${project.parent.basedir}</echo></tasks>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t07/p0/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t07/p0/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t07/p0/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t07/p0/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,37 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven-t07</groupId>
+  <artifactId>p0</artifactId>
+  <packaging>pom</packaging>
+  <name>p0</name>
+  <version>1.0</version>
+  <organization>
+    <name>Codehaus</name>
+  </organization>
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>maven-test</groupId>
+        <artifactId>t07-a</artifactId>
+        <version>1.0</version>
+      </dependency>
+      <dependency>
+        <groupId>maven-test</groupId>
+        <artifactId>t07-b</artifactId>
+        <version>1.1</version>
+      </dependency>
+      <dependency>
+        <groupId>maven-test</groupId>
+        <artifactId>t07-c</artifactId>
+        <version>1.0</version>
+      </dependency>
+      <dependency>
+        <groupId>maven-test</groupId>
+        <artifactId>t07-d</artifactId>
+        <version>1.2</version>
+        <scope>test</scope>
+        <optional>false</optional>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/jars/t08-a-1.0.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/jars/t08-a-1.0.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/jars/t08-a-1.0.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/jars/t08-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/inheritance-repo/t08/maven-test/jars/t08-b-1.0.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/jars/t08-b-1.0.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/jars/t08-b-1.0.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/jars/t08-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/inheritance-repo/t08/maven-test/jars/t08-b-1.1.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/jars/t08-b-1.1.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/jars/t08-b-1.1.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/jars/t08-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/inheritance-repo/t08/maven-test/jars/t08-c-1.0.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/jars/t08-c-1.0.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/jars/t08-c-1.0.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/jars/t08-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/inheritance-repo/t08/maven-test/jars/t08-d-1.0.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/jars/t08-d-1.0.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/jars/t08-d-1.0.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/jars/t08-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/inheritance-repo/t08/maven-test/jars/t08-d-1.1.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/jars/t08-d-1.1.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/jars/t08-d-1.1.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/jars/t08-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/inheritance-repo/t08/maven-test/jars/t08-d-1.2.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/jars/t08-d-1.2.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/jars/t08-d-1.2.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/jars/t08-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/inheritance-repo/t08/maven-test/poms/t08-a-1.0.pom
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/poms/t08-a-1.0.pom?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/poms/t08-a-1.0.pom (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/poms/t08-a-1.0.pom Wed Apr 29 05:20:38 2009
@@ -0,0 +1,23 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven-test</groupId>
+  <artifactId>t08-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>
+  <dependencies>
+    <dependency>
+      <groupId>maven-test</groupId>
+      <artifactId>t08-b</artifactId>
+      <version>1.0</version>
+      <type>jar</type>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file

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

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

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/poms/t08-c-1.0.pom
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/poms/t08-c-1.0.pom?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/poms/t08-c-1.0.pom (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/poms/t08-c-1.0.pom Wed Apr 29 05:20:38 2009
@@ -0,0 +1,17 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven-test</groupId>
+  <artifactId>t08-c</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0</version>
+  <dependencies>
+    <dependency>
+      <groupId>maven-test</groupId>
+      <artifactId>t08-d</artifactId>
+      <version>1.1</version>
+      <type>jar</type>
+      <scope>compile</scope>
+      <optional>true</optional>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/poms/t08-d-1.0.pom
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/poms/t08-d-1.0.pom?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/poms/t08-d-1.0.pom (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/poms/t08-d-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>t08-d</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/inheritance-repo/t08/maven-test/poms/t08-d-1.1.pom
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/poms/t08-d-1.1.pom?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/poms/t08-d-1.1.pom (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/maven-test/poms/t08-d-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>t08-d</artifactId>
+  <packaging>jar</packaging>
+  <version>1.1</version>
+</project>
\ No newline at end of file

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

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/p0/p1/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/p0/p1/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/p0/p1/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/p0/p1/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,59 @@
+<project>
+  <parent>
+    <artifactId>p0</artifactId>
+    <groupId>maven-t08</groupId>
+    <version>1.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven-t08</groupId>
+  <artifactId>p1</artifactId>
+  <packaging>pom</packaging>
+  <name>p1</name>
+  <version>1.0</version>
+  <scm>
+    <url>scm-url</url>
+  </scm>
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>maven-test</groupId>
+        <artifactId>t08-b</artifactId>
+        <version>1.0</version>
+      </dependency>
+      <dependency>
+        <groupId>maven-test</groupId>
+        <artifactId>t08-d</artifactId>
+        <version>1.0</version>
+        <scope>test</scope>
+        <optional>true</optional>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+  <dependencies>
+    <dependency>
+      <groupId>maven-test</groupId>
+      <artifactId>t08-a</artifactId>
+      <version>1.0</version>
+    </dependency>
+    <dependency>
+      <groupId>maven-test</groupId>
+      <artifactId>t08-c</artifactId>
+      <version>1.0</version>
+    </dependency>
+    <dependency>
+      <groupId>maven-test</groupId>
+      <artifactId>t08-d</artifactId>
+      <version>1.0</version>
+    </dependency>
+  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <configuration>
+          <tasks><echo>${project.parent.basedir}</echo></tasks>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/p0/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/p0/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/p0/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t08/p0/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,37 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven-t08</groupId>
+  <artifactId>p0</artifactId>
+  <packaging>pom</packaging>
+  <name>p0</name>
+  <version>1.0</version>
+  <organization>
+    <name>Codehaus</name>
+  </organization>
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>maven-test</groupId>
+        <artifactId>t08-a</artifactId>
+        <version>1.0</version>
+      </dependency>
+      <dependency>
+        <groupId>maven-test</groupId>
+        <artifactId>t08-b</artifactId>
+        <version>1.1</version>
+      </dependency>
+      <dependency>
+        <groupId>maven-test</groupId>
+        <artifactId>t08-c</artifactId>
+        <version>1.0</version>
+      </dependency>
+      <dependency>
+        <groupId>maven-test</groupId>
+        <artifactId>t08-d</artifactId>
+        <version>1.2</version>
+        <scope>test</scope>
+        <optional>false</optional>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/maven-test/jars/t09-a-1.0.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/maven-test/jars/t09-a-1.0.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/maven-test/jars/t09-a-1.0.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/maven-test/jars/t09-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/inheritance-repo/t09/maven-test/jars/t09-b-1.0.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/maven-test/jars/t09-b-1.0.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/maven-test/jars/t09-b-1.0.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/maven-test/jars/t09-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/inheritance-repo/t09/maven-test/jars/t09-c-1.0.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/maven-test/jars/t09-c-1.0.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/maven-test/jars/t09-c-1.0.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/maven-test/jars/t09-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/inheritance-repo/t09/maven-test/jars/t09-d-1.0.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/maven-test/jars/t09-d-1.0.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/maven-test/jars/t09-d-1.0.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/maven-test/jars/t09-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/inheritance-repo/t09/maven-test/poms/t09-a-1.0.pom
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/maven-test/poms/t09-a-1.0.pom?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/maven-test/poms/t09-a-1.0.pom (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/maven-test/poms/t09-a-1.0.pom Wed Apr 29 05:20:38 2009
@@ -0,0 +1,24 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven-test</groupId>
+  <artifactId>t09-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>
+
+  <dependencies>
+    <dependency>
+      <groupId>maven-test</groupId>
+      <artifactId>t09-b</artifactId>
+      <version>1.0</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+
+</project>
\ No newline at end of file

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

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

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/p0/p1/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/p0/p1/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/p0/p1/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/p0/p1/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,36 @@
+<project>
+  <parent>
+    <artifactId>p0</artifactId>
+    <groupId>maven-t09</groupId>
+    <version>1.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven-t09</groupId>
+  <artifactId>p1</artifactId>
+  <packaging>pom</packaging>
+  <name>p1</name>
+  <version>1.0</version>
+  <scm>
+    <url>scm-url</url>
+  </scm>
+
+  <dependencies>
+
+    <dependency>
+      <groupId>maven-test</groupId>
+      <artifactId>t09-a</artifactId>
+    </dependency>
+
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <configuration>
+          <tasks><echo>${project.parent.basedir}</echo></tasks>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/p0/p2/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/p0/p2/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/p0/p2/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/p0/p2/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,42 @@
+<project>
+  <parent>
+    <artifactId>p0</artifactId>
+    <groupId>maven-t09</groupId>
+    <version>1.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven-t09</groupId>
+  <artifactId>p2</artifactId>
+  <packaging>pom</packaging>
+  <name>p2</name>
+  <version>1.0</version>
+  <scm>
+    <url>scm-url</url>
+  </scm>
+
+  <dependencies>
+
+    <dependency>
+      <groupId>maven-test</groupId>
+      <artifactId>t09-a</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>maven-test</groupId>
+      <artifactId>t09-d</artifactId>
+      <version>1.0</version>
+    </dependency>
+
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <configuration>
+          <tasks><echo>${project.parent.basedir}</echo></tasks>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/p0/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/p0/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/p0/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t09/p0/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,38 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven-t09</groupId>
+  <artifactId>p0</artifactId>
+  <packaging>pom</packaging>
+  <name>p0</name>
+  <version>1.0</version>
+  <organization>
+    <name>Codehaus</name>
+  </organization>
+
+  <dependencyManagement>
+
+    <dependencies>
+
+      <dependency>
+        <groupId>maven-test</groupId>
+        <artifactId>t09-a</artifactId>
+        <version>1.0</version>
+      </dependency>
+
+      <dependency>
+        <groupId>maven-test</groupId>
+        <artifactId>t09-b</artifactId>
+        <version>1.0</version>
+        <exclusions>
+          <exclusion>
+            <groupId>maven-test</groupId>
+            <artifactId>t09-c</artifactId>
+          </exclusion>
+        </exclusions>
+      </dependency>
+
+    </dependencies>
+
+  </dependencyManagement>
+
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/maven-test/jars/t10-a-1.0.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/maven-test/jars/t10-a-1.0.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/maven-test/jars/t10-a-1.0.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/maven-test/jars/t10-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/inheritance-repo/t10/maven-test/jars/t10-b-1.0.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/maven-test/jars/t10-b-1.0.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/maven-test/jars/t10-b-1.0.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/maven-test/jars/t10-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/inheritance-repo/t10/maven-test/jars/t10-c-1.0.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/maven-test/jars/t10-c-1.0.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/maven-test/jars/t10-c-1.0.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/maven-test/jars/t10-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/inheritance-repo/t10/maven-test/poms/t10-a-1.0.pom
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/maven-test/poms/t10-a-1.0.pom?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/maven-test/poms/t10-a-1.0.pom (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/maven-test/poms/t10-a-1.0.pom Wed Apr 29 05:20:38 2009
@@ -0,0 +1,24 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven-test</groupId>
+  <artifactId>t10-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>
+
+  <dependencies>
+    <dependency>
+      <groupId>maven-test</groupId>
+      <artifactId>t10-b</artifactId>
+      <version>1.0</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/maven-test/poms/t10-b-1.0.pom
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/maven-test/poms/t10-b-1.0.pom?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/maven-test/poms/t10-b-1.0.pom (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/maven-test/poms/t10-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>t10-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/inheritance-repo/t10/maven-test/poms/t10-c-1.0.pom
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/maven-test/poms/t10-c-1.0.pom?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/maven-test/poms/t10-c-1.0.pom (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/maven-test/poms/t10-c-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>t10-c</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/inheritance-repo/t10/p0/p1/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/p0/p1/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/p0/p1/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/p0/p1/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,42 @@
+<project>
+  <parent>
+    <artifactId>p0</artifactId>
+    <groupId>maven-t10</groupId>
+    <version>1.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven-t10</groupId>
+  <artifactId>p1</artifactId>
+  <packaging>pom</packaging>
+  <name>p1</name>
+  <version>1.0</version>
+  <scm>
+    <url>scm-url</url>
+  </scm>
+
+  <dependencies>
+
+    <dependency>
+      <groupId>maven-test</groupId>
+      <artifactId>t10-a</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>maven-test</groupId>
+      <artifactId>t10-c</artifactId>
+      <scope>runtime</scope>
+    </dependency>
+
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <configuration>
+          <tasks><echo>${project.parent.basedir}</echo></tasks>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/p0/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/p0/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/p0/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t10/p0/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,41 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven-t10</groupId>
+  <artifactId>p0</artifactId>
+  <packaging>pom</packaging>
+  <name>p0</name>
+  <version>1.0</version>
+  <organization>
+    <name>Codehaus</name>
+  </organization>
+
+  <dependencyManagement>
+
+    <dependencies>
+
+      <dependency>
+        <groupId>maven-test</groupId>
+        <artifactId>t10-a</artifactId>
+        <version>1.0</version>
+        <scope>test</scope>
+      </dependency>
+
+      <dependency>
+        <groupId>maven-test</groupId>
+        <artifactId>t10-b</artifactId>
+        <version>1.0</version>
+        <scope>runtime</scope>
+      </dependency>
+
+	  <dependency>
+	    <groupId>maven-test</groupId>
+	    <artifactId>t10-c</artifactId>
+	    <version>1.0</version>
+	    <scope>test</scope>
+	  </dependency>
+
+    </dependencies>
+
+  </dependencyManagement>
+
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t11/p0/p1/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t11/p0/p1/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t11/p0/p1/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t11/p0/p1/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,16 @@
+<project>
+  <parent>
+    <artifactId>p0</artifactId>
+    <groupId>maven</groupId>
+    <version>1.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven</groupId>
+  <artifactId>p1</artifactId>
+  <packaging>jar</packaging>
+  <name>p1</name>
+  <version>1.0</version>
+  <scm>
+    <url>scm-url</url>
+  </scm>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t11/p0/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t11/p0/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t11/p0/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t11/p0/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,27 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven</groupId>
+  <artifactId>p0</artifactId>
+  <packaging>pom</packaging>
+  <name>p0</name>
+  <version>1.0</version>
+  <organization>
+    <name>Codehaus</name>
+  </organization>
+
+  <dependencyManagement>
+
+    <dependencies>
+
+      <dependency>
+        <groupId>maven</groupId>
+        <artifactId>p1</artifactId>
+        <version>1.0</version>
+        <scope>test</scope>
+      </dependency>
+
+    </dependencies>
+
+  </dependencyManagement>
+
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t12/p0/p1/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t12/p0/p1/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t12/p0/p1/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t12/p0/p1/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,29 @@
+<project>
+  <parent>
+    <artifactId>p0</artifactId>
+    <groupId>maven</groupId>
+    <version>1.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>p1</artifactId>
+  <packaging>jar</packaging>
+  
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>normal</id>
+            
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t12/p0/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t12/p0/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t12/p0/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t12/p0/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,30 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven</groupId>
+  <artifactId>p0</artifactId>
+  <packaging>pom</packaging>
+  <version>1.0</version>
+  
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>test</id>
+            
+            <!--  The key to this test... -->
+            <inherited>false</inherited>
+            
+            <goals>
+              <goal>compile</goal>
+            </goals>
+            <phase>install</phase>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t12scm/maven/p0/1.0/p0-1.0.pom
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t12scm/maven/p0/1.0/p0-1.0.pom?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t12scm/maven/p0/1.0/p0-1.0.pom (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t12scm/maven/p0/1.0/p0-1.0.pom Wed Apr 29 05:20:38 2009
@@ -0,0 +1,18 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven</groupId>
+  <artifactId>p0</artifactId>
+  <packaging>pom</packaging>
+  <version>1.0</version>
+  
+  <scm>
+    <connection>scm:svn:http://host/p0</connection>
+    <developerConnection>scm:svn:https://host/p0</developerConnection>
+    <url>http://host/viewer?path=/p0</url>
+  </scm>
+  
+  <modules>
+    <module>modules/p1</module>
+  </modules>
+
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t12scm/maven/p1/1.0/p1-1.0.pom
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t12scm/maven/p1/1.0/p1-1.0.pom?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t12scm/maven/p1/1.0/p1-1.0.pom (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t12scm/maven/p1/1.0/p1-1.0.pom Wed Apr 29 05:20:38 2009
@@ -0,0 +1,11 @@
+<project>
+  <parent>
+    <artifactId>p0</artifactId>
+    <groupId>maven</groupId>
+    <version>1.0</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>p1</artifactId>
+  
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t12scm/p0/modules/p1/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t12scm/p0/modules/p1/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t12scm/p0/modules/p1/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t12scm/p0/modules/p1/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,11 @@
+<project>
+  <parent>
+    <artifactId>p0</artifactId>
+    <groupId>maven</groupId>
+    <version>1.0</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>p1</artifactId>
+  
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t12scm/p0/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t12scm/p0/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t12scm/p0/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/inheritance-repo/t12scm/p0/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,18 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven</groupId>
+  <artifactId>p0</artifactId>
+  <packaging>pom</packaging>
+  <version>1.0</version>
+  
+  <scm>
+    <connection>scm:svn:http://host/p0</connection>
+    <developerConnection>scm:svn:https://host/p0</developerConnection>
+    <url>http://host/viewer?path=/p0</url>
+  </scm>
+  
+  <modules>
+    <module>modules/p1</module>
+  </modules>
+
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/marker.txt
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/marker.txt?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/marker.txt (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/marker.txt Wed Apr 29 05:20:38 2009
@@ -0,0 +1 @@
+this is just a marker file.
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/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/local-repo/maven-test/jars/maven-test-a-1.0.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/maven-test/jars/maven-test-a-1.0.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/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/local-repo/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/local-repo/maven-test/jars/maven-test-b-1.0.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/maven-test/jars/maven-test-b-1.0.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/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/local-repo/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/local-repo/maven-test/jars/maven-test-c-1.0.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/maven-test/jars/maven-test-c-1.0.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/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/local-repo/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/local-repo/maven-test/jars/maven-test-d-1.0.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/maven-test/jars/maven-test-d-1.0.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/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/local-repo/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/local-repo/maven-test/poms/maven-test-a-1.0.pom?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/maven-test/poms/maven-test-a-1.0.pom (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/maven-test/poms/maven-test-a-1.0.pom Wed Apr 29 05:20:38 2009
@@ -0,0 +1,23 @@
+<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>
+  <dependencies>
+    <dependency>
+      <groupId>maven-test</groupId>
+      <artifactId>maven-test-b</artifactId>
+      <version>1.0</version>
+      <type>jar</type>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/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/local-repo/maven-test/poms/maven-test-b-1.0.pom?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/maven-test/poms/maven-test-b-1.0.pom (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/maven-test/poms/maven-test-b-1.0.pom Wed Apr 29 05:20:38 2009
@@ -0,0 +1,23 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>maven-test</groupId>
+  <artifactId>maven-test-b</artifactId>
+  <packaging>jar</packaging>
+  <version>1.0</version>
+  <dependencies>
+    <dependency>
+      <groupId>maven-test</groupId>
+      <artifactId>maven-test-c</artifactId>
+      <version>1.0</version>
+      <type>jar</type>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>maven-test</groupId>
+      <artifactId>maven-test-d</artifactId>
+      <version>1.1</version>
+      <type>jar</type>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file

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

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/maven-test/poms/maven-test-d-1.1.pom
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/maven-test/poms/maven-test-d-1.1.pom?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/maven-test/poms/maven-test-d-1.1.pom (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/maven-test/poms/maven-test-d-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-d</artifactId>
+  <packaging>jar</packaging>
+  <version>1.1</version>
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/maven-test/poms/maven-test-d-1.2.pom
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/maven-test/poms/maven-test-d-1.2.pom?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/maven-test/poms/maven-test-d-1.2.pom (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/maven-test/poms/maven-test-d-1.2.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-d</artifactId>
+  <packaging>jar</packaging>
+  <version>1.1</version>
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-a-1.0-SNAPSHOT.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-a-1.0-SNAPSHOT.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-a-1.0-SNAPSHOT.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-a-1.0-SNAPSHOT.jar Wed Apr 29 05:20:38 2009
@@ -0,0 +1 @@
+local
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-a-1.0-SNAPSHOT.jar.snapshot-version
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-a-1.0-SNAPSHOT.jar.snapshot-version?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-a-1.0-SNAPSHOT.jar.snapshot-version (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-a-1.0-SNAPSHOT.jar.snapshot-version Wed Apr 29 05:20:38 2009
@@ -0,0 +1 @@
+20040101.101010
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-b-1.0-SNAPSHOT.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-b-1.0-SNAPSHOT.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-b-1.0-SNAPSHOT.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-b-1.0-SNAPSHOT.jar Wed Apr 29 05:20:38 2009
@@ -0,0 +1 @@
+local
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-b-1.0-SNAPSHOT.jar.snapshot-version
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-b-1.0-SNAPSHOT.jar.snapshot-version?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-b-1.0-SNAPSHOT.jar.snapshot-version (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-b-1.0-SNAPSHOT.jar.snapshot-version Wed Apr 29 05:20:38 2009
@@ -0,0 +1 @@
+20040101.101010
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-e-1.0-SNAPSHOT.jar
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-e-1.0-SNAPSHOT.jar?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-e-1.0-SNAPSHOT.jar (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-e-1.0-SNAPSHOT.jar Wed Apr 29 05:20:38 2009
@@ -0,0 +1 @@
+local
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-e-1.0-SNAPSHOT.jar.snapshot-version
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-e-1.0-SNAPSHOT.jar.snapshot-version?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-e-1.0-SNAPSHOT.jar.snapshot-version (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/jars/maven-snapshot-e-1.0-SNAPSHOT.jar.snapshot-version Wed Apr 29 05:20:38 2009
@@ -0,0 +1 @@
+20040101.101010
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/poms/maven-test-snapshot-resolving-1.0.pom
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/poms/maven-test-snapshot-resolving-1.0.pom?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/poms/maven-test-snapshot-resolving-1.0.pom (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/local-repo/snapshot-test/poms/maven-test-snapshot-resolving-1.0.pom Wed Apr 29 05:20:38 2009
@@ -0,0 +1,49 @@
+<project>
+  <groupId>snapshot-test</groupId>
+  <artifactId>maven-test-snapshot-resolving</artifactId>
+  <packaging>jar</packaging>
+  <repositories>
+    <repository>
+      <id>central</id>
+      <name>Fake Maven Central Repository</name>
+      <url>file://dummy</url>
+    </repository>
+  </repositories>
+  <dependencies>
+    <dependency>
+      <groupId>snapshot-test</groupId>
+      <artifactId>maven-snapshot-a</artifactId>
+      <version>1.0-SNAPSHOT</version>
+      <type>jar</type>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>snapshot-test</groupId>
+      <artifactId>maven-snapshot-b</artifactId>
+      <version>1.0-SNAPSHOT</version>
+      <type>jar</type>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>snapshot-test</groupId>
+      <artifactId>maven-snapshot-c</artifactId>
+      <version>1.0-SNAPSHOT</version>
+      <type>jar</type>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>snapshot-test</groupId>
+      <artifactId>maven-snapshot-d</artifactId>
+      <version>1.0-SNAPSHOT</version>
+      <type>jar</type>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>snapshot-test</groupId>
+      <artifactId>maven-snapshot-e</artifactId>
+      <version>1.0-SNAPSHOT</version>
+      <type>jar</type>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/org/apache/maven/project/workspace/buildFromFile/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/org/apache/maven/project/workspace/buildFromFile/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/org/apache/maven/project/workspace/buildFromFile/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/org/apache/maven/project/workspace/buildFromFile/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,8 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  
+  <groupId>org.apache.maven.tests</groupId>
+  <artifactId>build-from-file</artifactId>
+  <version>1</version>
+  
+</project>
\ No newline at end of file

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

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/org/apache/maven/project/workspace/buildFromRepo/tests/project-caching/maven-metadata-local.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/org/apache/maven/project/workspace/buildFromRepo/tests/project-caching/maven-metadata-local.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/org/apache/maven/project/workspace/buildFromRepo/tests/project-caching/maven-metadata-local.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/org/apache/maven/project/workspace/buildFromRepo/tests/project-caching/maven-metadata-local.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,11 @@
+<metadata>
+  <groupId>tests</groupId>
+  <artifactId>project-caching</artifactId>
+  <versioning>
+    <release>1</release>
+    <latest>1</latest>
+    <versions>
+      <version>1</version>
+    </versions>
+  </versioning>
+</metadata>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/org/apache/maven/project/workspace/buildModelLineage/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/org/apache/maven/project/workspace/buildModelLineage/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/org/apache/maven/project/workspace/buildModelLineage/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/org/apache/maven/project/workspace/buildModelLineage/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,7 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  
+  <groupId>tests</groupId>
+  <artifactId>build-model-lineage</artifactId>
+  <version>1</version>
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/org/apache/maven/project/workspace/resolveParentPom/childAndParent/child/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/org/apache/maven/project/workspace/resolveParentPom/childAndParent/child/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/org/apache/maven/project/workspace/resolveParentPom/childAndParent/child/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/org/apache/maven/project/workspace/resolveParentPom/childAndParent/child/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,10 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>tests</groupId>
+    <artifactId>childAndParent-parent</artifactId>
+    <version>1</version>
+  </parent>
+  
+  <artifactId>childAndParent-child</artifactId>
+</project>
\ No newline at end of file

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

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/org/apache/maven/project/workspace/resolveParentPom/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/org/apache/maven/project/workspace/resolveParentPom/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/org/apache/maven/project/workspace/resolveParentPom/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/org/apache/maven/project/workspace/resolveParentPom/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,10 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>tests</groupId>
+    <artifactId>resolve-parent-pom-parent</artifactId>
+    <version>1</version>
+  </parent>
+  
+  <artifactId>resolve-parent-pom</artifactId>
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/project-dynamism/plugin-level-dep.pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/project-dynamism/plugin-level-dep.pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/project-dynamism/plugin-level-dep.pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/project-dynamism/plugin-level-dep.pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,24 @@
+<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>testing</groupId>
+  <artifactId>plugin-level-dep</artifactId>
+  <packaging>jar</packaging>
+  <version>3.8.1</version>
+
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>2.0.2</version>
+        <dependencies>
+          <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>${pom.version}</version>
+          </dependency>
+        </dependencies>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/project-dynamism/pom-interp.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/project-dynamism/pom-interp.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/project-dynamism/pom-interp.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/project-dynamism/pom-interp.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" 
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+         
+  <modelVersion>4.0.0</modelVersion>
+  
+  <groupId>org.test</groupId>
+  <artifactId>test-build-dynamism</artifactId>
+  <version>1</version>
+  
+  <build>
+    <sourceDirectory>/${project.groupId}/src/main/java</sourceDirectory>
+    <testSourceDirectory>/${pom.groupId}/src/test/java</testSourceDirectory>
+    <scriptSourceDirectory>/${groupId}/src/main/scripts</scriptSourceDirectory>
+    
+    <plugins>
+      <plugin>
+        <artifactId>my-plugin</artifactId>
+        <configuration>
+          <testOne>${project.groupId}</testOne>
+          <testTwo>${pom.groupId}</testTwo>
+          <testThree>${groupId}</testThree>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/project-dynamism/pom-relative.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/project-dynamism/pom-relative.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/project-dynamism/pom-relative.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/project-dynamism/pom-relative.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" 
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+         
+  <modelVersion>4.0.0</modelVersion>
+  
+  <groupId>org.test</groupId>
+  <artifactId>test-build-dynamism</artifactId>
+  <version>1</version>
+  
+  <properties>
+    <myProperty>${pom.build.directory}</myProperty>
+  </properties>
+
+  <build>
+    <resources>
+      <resource>
+        <directory>${pom.build.directory}/generated-resources/plexus</directory>
+      </resource>
+    </resources>
+    
+    <filters>
+      <filter>${pom.build.directory}/generated-filters.properties</filter>
+    </filters>
+    
+    <directory>target</directory>
+    
+    <sourceDirectory>src/main/java</sourceDirectory>
+    <testSourceDirectory>src/test/java</testSourceDirectory>
+    <scriptSourceDirectory>src/main/scripts</scriptSourceDirectory>
+    
+    <outputDirectory>${pom.build.directory}/classes</outputDirectory>
+    <testOutputDirectory>${pom.build.directory}/test-classes</testOutputDirectory>
+  </build>
+
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/project-dynamism/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/project-dynamism/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/project-dynamism/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/project-dynamism/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" 
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+         
+  <modelVersion>4.0.0</modelVersion>
+  
+  <groupId>org.test</groupId>
+  <artifactId>test-build-dynamism</artifactId>
+  <version>1</version>
+  
+  <properties>
+    <myProperty>${pom.build.directory}</myProperty>
+  </properties>
+
+  <build>
+    <resources>
+      <resource>
+        <directory>${pom.build.directory}/generated-resources/plexus</directory>
+      </resource>
+    </resources>
+    
+    <filters>
+      <filter>${pom.build.directory}/generated-filters.properties</filter>
+    </filters>
+    
+    <directory>target</directory>
+    
+    <sourceDirectory>${pom.basedir}/src/main/java</sourceDirectory>
+    <testSourceDirectory>${pom.basedir}/src/test/java</testSourceDirectory>
+    <scriptSourceDirectory>${pom.basedir}/src/main/scripts</scriptSourceDirectory>
+    
+    <outputDirectory>${pom.build.directory}/classes</outputDirectory>
+    <testOutputDirectory>${pom.build.directory}/test-classes</testOutputDirectory>
+  </build>
+
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/base-directory-alignment/project-which-needs-directory-alignment-child.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/base-directory-alignment/project-which-needs-directory-alignment-child.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/base-directory-alignment/project-which-needs-directory-alignment-child.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/base-directory-alignment/project-which-needs-directory-alignment-child.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,33 @@
+<!--
+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>
+
+  <extend>project-which-needs-directory-alignment.xml</extend>
+
+  <parent>
+    <groupId>maven</groupId>
+    <artifactId>project-which-needs-directory-alignment.xml</artifactId>
+    <version>1.0-beta-9</version>
+  </parent>
+
+  <groupId>maven</groupId>
+  <artifactId>maven-foo</artifactId>
+  <version>1.0</version>
+</project>