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 [9/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/projects/base-directory-alignment/project-which-needs-directory-alignment.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.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/base-directory-alignment/project-which-needs-directory-alignment.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/base-directory-alignment/project-which-needs-directory-alignment.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,135 @@
+<?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>maven</groupId>
+  <artifactId>project-which-needs-directory-alignment</artifactId>
+  <name>Maven</name>
+  <version>1.0-beta-9</version>
+  <inceptionYear>2001</inceptionYear>
+  <description>Description</description>
+  <url>http://maven.apache.org/</url>
+
+  <organization>
+    <name>Apache Software Foundation</name>
+    <url>http://apache.org/</url>
+  </organization>
+
+  <scm>
+    <connection>anon-connection</connection>
+    <developerConnection>developer-connection</developerConnection>
+    <url>repository-url</url>
+  </scm>
+
+  <mailingLists>
+    <mailingList>
+      <name>Maven User List</name>
+      <subscribe>subscribe</subscribe>
+      <unsubscribe>unsubscribe</unsubscribe>
+      <archive>archive</archive>
+    </mailingList>
+  </mailingLists>
+
+  <developers>
+    <developer>
+      <name>Jason van Zyl</name>
+      <id>jvanzyl</id>
+      <email>jason@maven.org</email>
+      <organization>Zenplex</organization>
+      <roles>
+        <role>Founder</role>
+        <role>Release Manager</role>
+      </roles>
+    </developer>
+  </developers>
+
+  <contributors>
+    <contributor>
+      <name>Martin van dem Bemt</name>
+      <email>mvdb@mvdb.com</email>
+    </contributor>
+  </contributors>
+
+  <dependencies>
+
+    <dependency>
+      <groupId>g1</groupId>
+      <artifactId>d1</artifactId>
+      <version>1.0</version>
+    </dependency>
+
+    <dependency>
+      <groupId>g2</groupId>
+      <artifactId>d2</artifactId>
+      <version>2.0</version>
+    </dependency>
+
+    <dependency>
+      <groupId>g3</groupId>
+      <artifactId>d3</artifactId>
+    </dependency>
+
+  </dependencies>
+
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>g3</groupId>
+        <artifactId>d3</artifactId>
+        <version>3.0</version>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
+  <build>
+    <sourceDirectory>sourceDirectory</sourceDirectory>
+    <testSourceDirectory>unitTestSourceDirectory</testSourceDirectory>
+    <resources>
+      <resource>
+        <directory>src/test</directory>
+        <includes>
+          <include>**/*.xml</include>
+        </includes>
+      </resource>
+    </resources>
+    <testResources>
+      <testResource>
+        <directory>src/conf</directory>
+        <includes>
+          <include>*.xsd</include>
+          <include>*.dtd</include>
+          <include>*.mod</include>
+          <include>log4j.properties</include>
+          <include>driver.jelly</include>
+          <include>driver.properties</include>
+        </includes>
+      </testResource>
+      <testResource>
+        <directory>src/messages</directory>
+        <targetPath>org/apache/maven/messages</targetPath>
+        <includes>
+          <include>messages*.properties</include>
+        </includes>
+      </testResource>
+    </testResources>
+  </build>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/base-directory-alignment/subproject/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/subproject/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/subproject/project-which-needs-directory-alignment-child.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/base-directory-alignment/subproject/project-which-needs-directory-alignment-child.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,29 @@
+<!--
+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</artifactId>
+    <version>1.0-beta-9</version>
+  </parent>
+</project>

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

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/duplicate-plugins-merged-pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/duplicate-plugins-merged-pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/duplicate-plugins-merged-pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/duplicate-plugins-merged-pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,32 @@
+<project>
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>tests.project</groupId>
+    <artifactId>duplicate-plugin-defs-merged</artifactId>
+    <version>1</version>
+    
+    <build>
+      <plugins>
+        <plugin>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <dependencies>
+            <dependency>
+              <groupId>group</groupId>
+              <artifactId>first</artifactId>
+              <version>1</version>
+            </dependency>
+          </dependencies>
+        </plugin>
+        <plugin>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <dependencies>
+            <dependency>
+              <groupId>group</groupId>
+              <artifactId>second</artifactId>
+              <version>1</version>
+            </dependency>
+          </dependencies>
+        </plugin>
+      </plugins>
+    </build>
+    
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/grandchild-check/child/grandchild/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/grandchild-check/child/grandchild/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/grandchild-check/child/grandchild/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/grandchild-check/child/grandchild/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,10 @@
+<project>
+	<modelVersion>4.0.0</modelVersion>
+	<parent>
+	<groupId>grandchildtest</groupId>
+	<artifactId>child</artifactId>
+	<version>1</version>
+	</parent>
+	<artifactId>grandchild</artifactId>
+
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/grandchild-check/child/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/grandchild-check/child/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/grandchild-check/child/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/grandchild-check/child/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,13 @@
+<project>
+	<modelVersion>4.0.0</modelVersion>
+	<parent>
+	<groupId>grandchildtest</groupId>
+	<artifactId>root-pom</artifactId>
+	<version>1</version>
+	</parent>
+	<artifactId>child</artifactId>
+	<packaging>pom</packaging>
+  <modules>
+    <module>grandchild</module>
+  </modules>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/grandchild-check/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/grandchild-check/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/grandchild-check/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/grandchild-check/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,7 @@
+<project>
+	<modelVersion>4.0.0</modelVersion>
+	<groupId>grandchildtest</groupId>
+	<artifactId>root-pom</artifactId>
+	<version>1</version>
+	<packaging>pom</packaging>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/scope/project-with-scoped-dependencies.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/scope/project-with-scoped-dependencies.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/scope/project-with-scoped-dependencies.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/scope/project-with-scoped-dependencies.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,99 @@
+<?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>maven</groupId>
+  <artifactId>maven-project-test</artifactId>
+  <name>Maven</name>
+  <version>1.0-beta-9</version>
+  <dependencies>
+
+    <dependency>
+      <groupId>maven-test</groupId>
+      <artifactId>scope-default</artifactId>
+      <version>1.0</version>
+    </dependency>
+
+    <dependency>
+      <groupId>maven-test</groupId>
+      <artifactId>scope-test</artifactId>
+      <version>1.0</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>maven-test</groupId>
+      <artifactId>scope-runtime</artifactId>
+      <version>1.0</version>
+      <scope>runtime</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>maven-test</groupId>
+      <artifactId>scope-compile</artifactId>
+      <version>1.0</version>
+      <scope>compile</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>maven-test</groupId>
+      <artifactId>scope-provided</artifactId>
+      <version>1.0</version>
+      <scope>provided</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>maven-inherited</groupId>
+      <artifactId>scope-default</artifactId>
+      <version>1.0</version>
+    </dependency>
+
+    <dependency>
+      <groupId>maven-inherited</groupId>
+      <artifactId>scope-compile</artifactId>
+      <version>1.0</version>
+      <scope>compile</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>maven-inherited</groupId>
+      <artifactId>scope-runtime</artifactId>
+      <version>1.0</version>
+      <scope>runtime</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>maven-inherited</groupId>
+      <artifactId>scope-test</artifactId>
+      <version>1.0</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>maven-inherited</groupId>
+      <artifactId>scope-provided</artifactId>
+      <version>1.0</version>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
+
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/scope/transitive-compile-dep.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/scope/transitive-compile-dep.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/scope/transitive-compile-dep.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/scope/transitive-compile-dep.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,56 @@
+<?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>
+  <groupId>maven-test</groupId>
+  <artifactId>scope-compile</artifactId>
+  <version>1.0</version>
+  <dependencies>
+
+    <dependency>
+      <groupId>maven-test-compile</groupId>
+      <artifactId>scope-default</artifactId>
+      <version>1.0</version>
+    </dependency>
+
+    <dependency>
+      <groupId>maven-test-compile</groupId>
+      <artifactId>scope-test</artifactId>
+      <version>1.0</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>maven-test-compile</groupId>
+      <artifactId>scope-runtime</artifactId>
+      <version>1.0</version>
+      <scope>runtime</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>maven-test-compile</groupId>
+      <artifactId>scope-compile</artifactId>
+      <version>1.0</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/scope/transitive-default-dep.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/scope/transitive-default-dep.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/scope/transitive-default-dep.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/scope/transitive-default-dep.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>
+  <groupId>maven-test</groupId>
+  <artifactId>scope-default</artifactId>
+  <version>1.0</version>
+  <dependencies>
+
+    <dependency>
+      <groupId>maven-test-default</groupId>
+      <artifactId>scope-default</artifactId>
+      <version>1.0</version>
+    </dependency>
+
+    <dependency>
+      <groupId>maven-test-default</groupId>
+      <artifactId>scope-test</artifactId>
+      <version>1.0</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>maven-test-default</groupId>
+      <artifactId>scope-runtime</artifactId>
+      <version>1.0</version>
+      <scope>runtime</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>maven-test-default</groupId>
+      <artifactId>scope-compile</artifactId>
+      <version>1.0</version>
+      <scope>compile</scope>
+    </dependency>
+
+  </dependencies>
+
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/scope/transitive-provided-dep.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/scope/transitive-provided-dep.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/scope/transitive-provided-dep.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/scope/transitive-provided-dep.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,56 @@
+<?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>
+  <groupId>maven-test</groupId>
+  <artifactId>scope-provided</artifactId>
+  <version>1.0</version>
+  <dependencies>
+
+    <dependency>
+      <groupId>maven-test-provided</groupId>
+      <artifactId>scope-default</artifactId>
+      <version>1.0</version>
+    </dependency>
+
+    <dependency>
+      <groupId>maven-test-provided</groupId>
+      <artifactId>scope-test</artifactId>
+      <version>1.0</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>maven-test-provided</groupId>
+      <artifactId>scope-runtime</artifactId>
+      <version>1.0</version>
+      <scope>runtime</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>maven-test-provided</groupId>
+      <artifactId>scope-compile</artifactId>
+      <version>1.0</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/scope/transitive-runtime-dep.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/scope/transitive-runtime-dep.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/scope/transitive-runtime-dep.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/scope/transitive-runtime-dep.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>
+  <groupId>maven-test</groupId>
+  <artifactId>scope-runtime</artifactId>
+  <version>1.0</version>
+  <dependencies>
+
+    <dependency>
+      <groupId>maven-test-runtime</groupId>
+      <artifactId>scope-default</artifactId>
+      <version>1.0</version>
+    </dependency>
+
+    <dependency>
+      <groupId>maven-test-runtime</groupId>
+      <artifactId>scope-test</artifactId>
+      <version>1.0</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>maven-test-runtime</groupId>
+      <artifactId>scope-runtime</artifactId>
+      <version>1.0</version>
+      <scope>runtime</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>maven-test-runtime</groupId>
+      <artifactId>scope-compile</artifactId>
+      <version>1.0</version>
+      <scope>compile</scope>
+    </dependency>
+
+  </dependencies>
+
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/scope/transitive-test-dep.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/scope/transitive-test-dep.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/scope/transitive-test-dep.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/projects/scope/transitive-test-dep.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>
+  <groupId>maven-test</groupId>
+  <artifactId>scope-test</artifactId>
+  <version>1.0</version>
+  <dependencies>
+
+    <dependency>
+      <groupId>maven-test-test</groupId>
+      <artifactId>scope-default</artifactId>
+      <version>1.0</version>
+    </dependency>
+
+    <dependency>
+      <groupId>maven-test-test</groupId>
+      <artifactId>scope-test</artifactId>
+      <version>1.0</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>maven-test-test</groupId>
+      <artifactId>scope-runtime</artifactId>
+      <version>1.0</version>
+      <scope>runtime</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>maven-test-test</groupId>
+      <artifactId>scope-compile</artifactId>
+      <version>1.0</version>
+      <scope>compile</scope>
+    </dependency>
+
+  </dependencies>
+
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/invalid-aggregator-packaging-pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/invalid-aggregator-packaging-pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/invalid-aggregator-packaging-pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/invalid-aggregator-packaging-pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,30 @@
+<!--
+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>
+  <artifactId>foo</artifactId>
+  <groupId>foo</groupId>
+  <version>99.44</version>
+  <packaging>bleh</packaging>
+  
+  <modules>
+    <module>test-module</module>
+  </modules>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/invalid-ids-pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/invalid-ids-pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/invalid-ids-pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/invalid-ids-pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,26 @@
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>o/a/m</groupId>
+  <artifactId>m$-do$</artifactId>
+  <version>99.44</version>
+  <packaging>bleh</packaging>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-1-pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-1-pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-1-pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-1-pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,21 @@
+<!--
+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>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-artifactId-pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-artifactId-pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-artifactId-pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-artifactId-pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,25 @@
+<!--
+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>foo</groupId>
+  <version>99.44</version>
+  <packaging>bleh</packaging>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-dependency-artifactId-pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-dependency-artifactId-pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-dependency-artifactId-pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-dependency-artifactId-pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,32 @@
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>foo</artifactId>
+  <groupId>foo</groupId>
+  <version>99.44</version>
+  <packaging>bleh</packaging>
+  <dependencies>
+    <dependency>
+      <groupId>groupId</groupId>
+      <version>1.0</version>
+    </dependency>
+  </dependencies>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-dependency-groupId-pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-dependency-groupId-pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-dependency-groupId-pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-dependency-groupId-pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,32 @@
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>foo</artifactId>
+  <groupId>foo</groupId>
+  <version>99.44</version>
+  <packaging>bleh</packaging>
+  <dependencies>
+    <dependency>
+      <artifactId>artifactId</artifactId>
+      <version>1.0</version>
+    </dependency>
+  </dependencies>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-dependency-mgmt-artifactId-pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-dependency-mgmt-artifactId-pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-dependency-mgmt-artifactId-pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-dependency-mgmt-artifactId-pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,34 @@
+<!--
+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>
+  <artifactId>foo</artifactId>
+  <groupId>foo</groupId>
+  <version>99.44</version>
+  <packaging>bleh</packaging>
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>groupId</groupId>
+        <version>version</version>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-dependency-mgmt-groupId-pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-dependency-mgmt-groupId-pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-dependency-mgmt-groupId-pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-dependency-mgmt-groupId-pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,34 @@
+<!--
+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>
+  <artifactId>foo</artifactId>
+  <groupId>foo</groupId>
+  <version>99.44</version>
+  <packaging>bleh</packaging>
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <artifactId>artifactId</artifactId>
+        <version>version</version>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-dependency-mgmt-version-pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-dependency-mgmt-version-pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-dependency-mgmt-version-pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-dependency-mgmt-version-pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,34 @@
+<!--
+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>
+  <artifactId>foo</artifactId>
+  <groupId>foo</groupId>
+  <version>99.44</version>
+  <packaging>bleh</packaging>
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <artifactId>artifactId</artifactId>
+        <groupId>groupId</groupId>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-dependency-version-pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-dependency-version-pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-dependency-version-pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-dependency-version-pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,32 @@
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>foo</artifactId>
+  <groupId>foo</groupId>
+  <version>99.44</version>
+  <packaging>bleh</packaging>
+  <dependencies>
+    <dependency>
+      <artifactId>artifactId</artifactId>
+      <groupId>groupId</groupId>
+    </dependency>
+  </dependencies>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-groupId-pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-groupId-pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-groupId-pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-groupId-pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,25 @@
+<!--
+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>
+  <artifactId>bar</artifactId>
+  <version>99.44</version>
+  <packaging>bleh</packaging>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-modelVersion-pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-modelVersion-pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-modelVersion-pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-modelVersion-pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,25 @@
+<!--
+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>
+  <groupId>foo</groupId>
+  <artifactId>foo</artifactId>
+  <version>99.44</version>
+  <packaging>bleh</packaging>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-plugin-artifactId-pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-plugin-artifactId-pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-plugin-artifactId-pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-plugin-artifactId-pom.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>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>foo</artifactId>
+  <groupId>foo</groupId>
+  <version>99.44</version>
+  <packaging>bleh</packaging>
+  <build>
+    <plugins>
+      <plugin>
+
+      </plugin>
+    </plugins>
+  </build>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-report-artifactId-pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-report-artifactId-pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-report-artifactId-pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-report-artifactId-pom.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>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>foo</artifactId>
+  <groupId>foo</groupId>
+  <version>99.44</version>
+  <packaging>bleh</packaging>
+  <reporting>
+    <plugins>
+      <plugin>
+
+      </plugin>
+    </plugins>
+  </reporting>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-repository-id-pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-repository-id-pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-repository-id-pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-repository-id-pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,36 @@
+<!--
+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>
+  <artifactId>foo</artifactId>
+  <groupId>foo</groupId>
+  <version>99.44</version>
+  <packaging>bleh</packaging>
+  <repositories>
+    <repository>
+
+    </repository>
+  </repositories>
+  <pluginRepositories>
+    <pluginRepository>
+
+    </pluginRepository>
+  </pluginRepositories>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-resource-directory-pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-resource-directory-pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-resource-directory-pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-resource-directory-pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,38 @@
+<!--
+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>
+  <artifactId>foo</artifactId>
+  <groupId>foo</groupId>
+  <version>99.44</version>
+  <packaging>bleh</packaging>
+  <build>
+    <resources>
+      <resource>
+
+      </resource>
+    </resources>
+    <testResources>
+      <testResource>
+
+      </testResource>
+    </testResources>
+  </build>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-type-pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-type-pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-type-pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-type-pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,26 @@
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>foo</groupId>
+  <artifactId>bar</artifactId>
+  <version>99.44</version>
+  <packaging></packaging>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-version-pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-version-pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-version-pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources/validation/missing-version-pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,25 @@
+<!--
+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>foo</groupId>
+  <artifactId>bar</artifactId>
+  <packaging>bleh</packaging>
+</project>