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 [2/9] - in /maven/components/branches/MNG-2766/maven-core/src/test: resources-project-builder/ resources-project-builder/basedir-aligned-interpolation/ resources-project-builder/basedir-interpolation/ resources-project-builder/baseu...

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/build-extension-inheritance/sub/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/build-extension-inheritance/sub/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/build-extension-inheritance/sub/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/build-extension-inheritance/sub/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<project>
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.maven.its.mng3899</groupId>
+    <artifactId>parent</artifactId>
+    <version>0.1</version>
+  </parent>
+
+  <artifactId>child</artifactId>
+
+  <name>Maven Integration Test :: MNG-3899</name> 
+  <description>
+    Test that build extensions are properly merged during inheritance.
+  </description>
+
+  <build>
+    <!-- project extensions should precede inherited extensions -->
+    <extensions>
+      <extension>
+        <groupId>org.apache.maven.its.mng3899</groupId>
+        <artifactId>b</artifactId>
+        <version>0.1</version>
+      </extension>
+      <extension>
+        <!-- project extensions should override inherited extension with equal gid:aid -->
+        <groupId>org.apache.maven.its.mng3899</groupId>
+        <artifactId>a</artifactId>
+        <version>0.2</version>
+      </extension>
+    </extensions>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.its.plugins</groupId>
+        <artifactId>maven-it-plugin-expression</artifactId>
+        <version>2.1-SNAPSHOT</version>
+        <executions>
+          <execution>
+            <phase>validate</phase>
+            <goals>
+              <goal>eval</goal>
+            </goals>
+            <configuration>
+              <outputFile>target/extension.properties</outputFile>
+              <expressions>
+                <expression>project/build/extensions</expression>
+              </expressions>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>

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

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/complete-model/w-parent/sub/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/complete-model/w-parent/sub/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/complete-model/w-parent/sub/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/complete-model/w-parent/sub/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,319 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<project>
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.maven.its.mng</groupId>
+    <artifactId>parent</artifactId>
+    <version>0.1</version>
+  </parent>
+
+  <groupId>org.apache.maven.its.mng</groupId>
+  <artifactId>test</artifactId>
+  <version>0.2</version>
+  <packaging>pom</packaging>
+
+  <name>project-name</name> 
+  <description>project-description</description>
+  <url>http://project.url/</url>
+  <inceptionYear>2009</inceptionYear>
+  <organization>
+    <name>project-org</name>
+    <url>http://project-org.url/</url>
+  </organization>
+  <licenses>
+    <license>
+      <name>project-license</name>
+      <url>http://project.url/license</url>
+      <distribution>repo</distribution>
+      <comments>free</comments>
+    </license>
+  </licenses>
+
+  <developers>
+    <developer>
+      <id>dev</id>
+      <name>project-developer</name>
+      <email>developer@</email>
+      <url>http://developer</url>
+      <organization>developer</organization>
+      <organizationUrl>http://devel.org</organizationUrl>
+      <roles>
+        <role>devel</role>
+      </roles>
+      <timezone>-1</timezone>
+      <properties>
+        <developer>yes</developer>
+      </properties>
+    </developer>
+  </developers>
+  <contributors>
+    <contributor>
+      <name>project-contributor</name>
+      <email>contributor@</email>
+      <url>http://contributor</url>
+      <organization>contributor</organization>
+      <organizationUrl>http://contrib.org</organizationUrl>
+      <roles>
+        <role>contrib</role>
+      </roles>
+      <timezone>+1</timezone>
+      <properties>
+        <contributor>yes</contributor>
+      </properties>
+    </contributor>
+  </contributors>
+
+  <mailingLists>
+    <mailingList>
+      <name>project-mailing-list</name>
+      <subscribe>subscribe@</subscribe>
+      <unsubscribe>unsubscribe@</unsubscribe>
+      <post>post@</post>
+      <archive>mail-archive</archive>
+      <otherArchives>
+        <otherArchive>other-archive</otherArchive>
+      </otherArchives>
+    </mailingList>
+  </mailingLists>
+
+  <prerequisites>
+    <maven>2.0.1</maven>
+  </prerequisites>
+
+  <scm>
+    <url>http://project.url/trunk</url>
+    <connection>http://project.url/scm</connection>
+    <developerConnection>https://project.url/scm</developerConnection>
+    <tag>TAG</tag>
+  </scm>
+  <issueManagement>
+    <system>issues</system>
+    <url>http://project.url/issues</url>
+  </issueManagement>
+  <ciManagement>
+    <system>ci</system>
+    <url>http://project.url/ci</url>
+    <notifiers>
+      <notifier>
+        <type>irc</type>
+        <address>ci@</address>
+        <sendOnError>true</sendOnError>
+        <sendOnFailure>false</sendOnFailure>
+        <sendOnSuccess>false</sendOnSuccess>
+        <sendOnWarning>false</sendOnWarning>
+        <configuration>
+          <ciProp>ci</ciProp>
+        </configuration>
+      </notifier>
+    </notifiers>
+  </ciManagement>
+  <distributionManagement>
+    <repository>
+      <url>http://project.url/dist</url>
+      <id>project.distros</id>
+      <name>distros</name>
+    </repository>
+    <snapshotRepository>
+      <url>http://project.url/snaps</url>
+      <id>project.snaps</id>
+      <name>snaps</name>
+      <uniqueVersion>false</uniqueVersion>
+    </snapshotRepository>
+    <site>
+      <url>http://project.url/site</url>
+      <id>project.site</id>
+      <name>docs</name>
+    </site>
+    <downloadUrl>http://project.url/download</downloadUrl>
+    <relocation>
+      <groupId>reloc-gid</groupId>
+      <artifactId>reloc-aid</artifactId>
+      <version>reloc-version</version>
+      <message>project-reloc-msg</message>
+    </relocation>
+  </distributionManagement>
+
+  <modules>
+    <module>sub</module>
+  </modules>
+
+  <properties>
+    <itProperty>project-property</itProperty>
+  </properties>
+
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>org.apache.maven.its</groupId>
+        <artifactId>managed-dep</artifactId>
+        <version>0.1</version>
+        <type>war</type>
+        <scope>runtime</scope>
+        <exclusions>
+          <exclusion>
+            <groupId>org.apache.maven.its</groupId>
+            <artifactId>excluded-managed-dep</artifactId>
+          </exclusion>
+        </exclusions>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.maven.its</groupId>
+      <artifactId>dep</artifactId>
+      <version>0.2</version>
+      <type>ejb</type>
+      <scope>test</scope>
+      <optional>true</optional>
+      <exclusions>
+        <exclusion>
+          <groupId>org.apache.maven.its</groupId>
+          <artifactId>excluded-dep</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+  </dependencies>
+
+  <repositories>
+    <repository>
+      <id>project-remote-repo</id>
+      <url>http://project.url/remote</url>
+      <name>repo</name>
+    </repository>
+  </repositories>
+
+  <build>
+    <extensions>
+      <extension>
+        <groupId>org.apache.maven.its.ext</groupId>
+        <artifactId>ext</artifactId>
+        <version>3.0</version>
+      </extension>
+    </extensions>
+
+    <defaultGoal>test</defaultGoal>
+    <directory>build</directory>
+    <sourceDirectory>sources/main</sourceDirectory>
+    <scriptSourceDirectory>sources/scripts</scriptSourceDirectory>
+    <testSourceDirectory>sources/test</testSourceDirectory>
+    <outputDirectory>build/main</outputDirectory>
+    <testOutputDirectory>build/test</testOutputDirectory>
+    <finalName>coreit</finalName>
+    <resources>
+      <resource>
+        <directory>res/main</directory>
+        <filtering>true</filtering>
+        <targetPath>main</targetPath>
+        <includes>
+          <include>main.included</include>
+        </includes>
+        <excludes>
+          <exclude>main.excluded</exclude>
+        </excludes>
+      </resource>
+    </resources>
+    <testResources>
+      <testResource>
+        <directory>res/test</directory>
+        <filtering>true</filtering>
+        <targetPath>test</targetPath>
+        <includes>
+          <include>test.included</include>
+        </includes>
+        <excludes>
+          <exclude>test.excluded</exclude>
+        </excludes>
+      </testResource>
+    </testResources>
+    <filters>
+      <filter>src/main/filter/it.properties</filter>
+    </filters>
+
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.its.plugins</groupId>
+        <artifactId>maven-it-plugin-build</artifactId>
+        <version>2.1-SNAPSHOT</version>
+        <configuration>
+          <outputFile>test.properties</outputFile>
+        </configuration>
+        <executions>
+          <execution>
+            <id>test</id>
+            <phase>validate</phase>
+            <goals>
+              <goal>eval</goal>
+            </goals>
+            <configuration>
+              <outputFile>pom.properties</outputFile>
+            </configuration>
+          </execution>
+        </executions>
+        <dependencies>
+          <dependency>
+            <groupId>org.apache.maven.its</groupId>
+            <artifactId>build-plugin-dep</artifactId>
+            <version>0.3</version>
+            <type>zip</type>
+            <exclusions>
+              <exclusion>
+                <groupId>org.apache.maven.its</groupId>
+                <artifactId>excluded-build-plugin-dep</artifactId>
+              </exclusion>
+            </exclusions>
+          </dependency>
+        </dependencies>
+      </plugin>
+    </plugins>
+  </build>
+
+  <reporting>
+    <excludeDefaults>true</excludeDefaults>
+    <outputDirectory>docs</outputDirectory>
+
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.its.plugins</groupId>
+        <artifactId>maven-it-plugin-reporting</artifactId>
+        <version>2.0-SNAPSHOT</version>
+        <configuration>
+          <outputFile>test.html</outputFile>
+        </configuration>
+        <reportSets>
+          <reportSet>
+            <id>it</id>
+            <reports>
+              <report>run</report>
+            </reports>
+            <configuration>
+              <outputFile>index.html</outputFile>
+            </configuration>
+          </reportSet>
+        </reportSets>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/complete-model/wo-parent/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/complete-model/wo-parent/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/complete-model/wo-parent/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/complete-model/wo-parent/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,313 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<project>
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.apache.maven.its.mng</groupId>
+  <artifactId>test</artifactId>
+  <version>0.2</version>
+  <packaging>pom</packaging>
+
+  <name>project-name</name> 
+  <description>project-description</description>
+  <url>http://project.url/</url>
+  <inceptionYear>2009</inceptionYear>
+  <organization>
+    <name>project-org</name>
+    <url>http://project-org.url/</url>
+  </organization>
+  <licenses>
+    <license>
+      <name>project-license</name>
+      <url>http://project.url/license</url>
+      <distribution>repo</distribution>
+      <comments>free</comments>
+    </license>
+  </licenses>
+
+  <developers>
+    <developer>
+      <id>dev</id>
+      <name>project-developer</name>
+      <email>developer@</email>
+      <url>http://developer</url>
+      <organization>developer</organization>
+      <organizationUrl>http://devel.org</organizationUrl>
+      <roles>
+        <role>devel</role>
+      </roles>
+      <timezone>-1</timezone>
+      <properties>
+        <developer>yes</developer>
+      </properties>
+    </developer>
+  </developers>
+  <contributors>
+    <contributor>
+      <name>project-contributor</name>
+      <email>contributor@</email>
+      <url>http://contributor</url>
+      <organization>contributor</organization>
+      <organizationUrl>http://contrib.org</organizationUrl>
+      <roles>
+        <role>contrib</role>
+      </roles>
+      <timezone>+1</timezone>
+      <properties>
+        <contributor>yes</contributor>
+      </properties>
+    </contributor>
+  </contributors>
+
+  <mailingLists>
+    <mailingList>
+      <name>project-mailing-list</name>
+      <subscribe>subscribe@</subscribe>
+      <unsubscribe>unsubscribe@</unsubscribe>
+      <post>post@</post>
+      <archive>mail-archive</archive>
+      <otherArchives>
+        <otherArchive>other-archive</otherArchive>
+      </otherArchives>
+    </mailingList>
+  </mailingLists>
+
+  <prerequisites>
+    <maven>2.0.1</maven>
+  </prerequisites>
+
+  <scm>
+    <url>http://project.url/trunk</url>
+    <connection>http://project.url/scm</connection>
+    <developerConnection>https://project.url/scm</developerConnection>
+    <tag>TAG</tag>
+  </scm>
+  <issueManagement>
+    <system>issues</system>
+    <url>http://project.url/issues</url>
+  </issueManagement>
+  <ciManagement>
+    <system>ci</system>
+    <url>http://project.url/ci</url>
+    <notifiers>
+      <notifier>
+        <type>irc</type>
+        <address>ci@</address>
+        <sendOnError>true</sendOnError>
+        <sendOnFailure>false</sendOnFailure>
+        <sendOnSuccess>false</sendOnSuccess>
+        <sendOnWarning>false</sendOnWarning>
+        <configuration>
+          <ciProp>ci</ciProp>
+        </configuration>
+      </notifier>
+    </notifiers>
+  </ciManagement>
+  <distributionManagement>
+    <repository>
+      <url>http://project.url/dist</url>
+      <id>project.distros</id>
+      <name>distros</name>
+    </repository>
+    <snapshotRepository>
+      <url>http://project.url/snaps</url>
+      <id>project.snaps</id>
+      <name>snaps</name>
+      <uniqueVersion>false</uniqueVersion>
+    </snapshotRepository>
+    <site>
+      <url>http://project.url/site</url>
+      <id>project.site</id>
+      <name>docs</name>
+    </site>
+    <downloadUrl>http://project.url/download</downloadUrl>
+    <relocation>
+      <groupId>reloc-gid</groupId>
+      <artifactId>reloc-aid</artifactId>
+      <version>reloc-version</version>
+      <message>project-reloc-msg</message>
+    </relocation>
+  </distributionManagement>
+
+  <modules>
+    <module>sub</module>
+  </modules>
+
+  <properties>
+    <itProperty>project-property</itProperty>
+  </properties>
+
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>org.apache.maven.its</groupId>
+        <artifactId>managed-dep</artifactId>
+        <version>0.1</version>
+        <type>war</type>
+        <scope>runtime</scope>
+        <exclusions>
+          <exclusion>
+            <groupId>org.apache.maven.its</groupId>
+            <artifactId>excluded-managed-dep</artifactId>
+          </exclusion>
+        </exclusions>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.maven.its</groupId>
+      <artifactId>dep</artifactId>
+      <version>0.2</version>
+      <type>ejb</type>
+      <scope>test</scope>
+      <optional>true</optional>
+      <exclusions>
+        <exclusion>
+          <groupId>org.apache.maven.its</groupId>
+          <artifactId>excluded-dep</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+  </dependencies>
+
+  <repositories>
+    <repository>
+      <id>project-remote-repo</id>
+      <url>http://project.url/remote</url>
+      <name>repo</name>
+    </repository>
+  </repositories>
+
+  <build>
+    <extensions>
+      <extension>
+        <groupId>org.apache.maven.its.ext</groupId>
+        <artifactId>ext</artifactId>
+        <version>3.0</version>
+      </extension>
+    </extensions>
+
+    <defaultGoal>test</defaultGoal>
+    <directory>build</directory>
+    <sourceDirectory>sources/main</sourceDirectory>
+    <scriptSourceDirectory>sources/scripts</scriptSourceDirectory>
+    <testSourceDirectory>sources/test</testSourceDirectory>
+    <outputDirectory>build/main</outputDirectory>
+    <testOutputDirectory>build/test</testOutputDirectory>
+    <finalName>coreit</finalName>
+    <resources>
+      <resource>
+        <directory>res/main</directory>
+        <filtering>true</filtering>
+        <targetPath>main</targetPath>
+        <includes>
+          <include>main.included</include>
+        </includes>
+        <excludes>
+          <exclude>main.excluded</exclude>
+        </excludes>
+      </resource>
+    </resources>
+    <testResources>
+      <testResource>
+        <directory>res/test</directory>
+        <filtering>true</filtering>
+        <targetPath>test</targetPath>
+        <includes>
+          <include>test.included</include>
+        </includes>
+        <excludes>
+          <exclude>test.excluded</exclude>
+        </excludes>
+      </testResource>
+    </testResources>
+    <filters>
+      <filter>src/main/filter/it.properties</filter>
+    </filters>
+
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.its.plugins</groupId>
+        <artifactId>maven-it-plugin-build</artifactId>
+        <version>2.1-SNAPSHOT</version>
+        <configuration>
+          <outputFile>test.properties</outputFile>
+        </configuration>
+        <executions>
+          <execution>
+            <id>test</id>
+            <phase>validate</phase>
+            <goals>
+              <goal>eval</goal>
+            </goals>
+            <configuration>
+              <outputFile>pom.properties</outputFile>
+            </configuration>
+          </execution>
+        </executions>
+        <dependencies>
+          <dependency>
+            <groupId>org.apache.maven.its</groupId>
+            <artifactId>build-plugin-dep</artifactId>
+            <version>0.3</version>
+            <type>zip</type>
+            <exclusions>
+              <exclusion>
+                <groupId>org.apache.maven.its</groupId>
+                <artifactId>excluded-build-plugin-dep</artifactId>
+              </exclusion>
+            </exclusions>
+          </dependency>
+        </dependencies>
+      </plugin>
+    </plugins>
+  </build>
+
+  <reporting>
+    <excludeDefaults>true</excludeDefaults>
+    <outputDirectory>docs</outputDirectory>
+
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.its.plugins</groupId>
+        <artifactId>maven-it-plugin-reporting</artifactId>
+        <version>2.0-SNAPSHOT</version>
+        <configuration>
+          <outputFile>test.html</outputFile>
+        </configuration>
+        <reportSets>
+          <reportSet>
+            <id>it</id>
+            <reports>
+              <report>run</report>
+            </reports>
+            <configuration>
+              <outputFile>index.html</outputFile>
+            </configuration>
+          </reportSet>
+        </reportSets>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/config-with-plugin-mng/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/config-with-plugin-mng/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/config-with-plugin-mng/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/config-with-plugin-mng/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,39 @@
+<project>
+	<modelVersion>4.0.0</modelVersion>
+    <groupId>org.sonatype.nexus</groupId>
+    <artifactId>nexus</artifactId>
+	<version>1.3.0-SNAPSHOT</version>
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.codehaus.modello</groupId>
+				<artifactId>modello-maven-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>nexus.xml</id>
+						<configuration>
+							<version>1.0.8</version>
+						</configuration>
+					</execution>
+					<execution>
+						<id>security.xml</id>
+						<configuration>
+							<version>1.0.0</version>
+							<model>src/main/mdo/security.xml</model>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+		</plugins>
+		<pluginManagement>
+			<plugins>
+				<plugin>
+					<groupId>org.codehaus.modello</groupId>
+					<artifactId>modello-maven-plugin</artifactId>
+					<version>1.0-alpha-21</version>
+				</plugin>
+			</plugins>
+		</pluginManagement>
+	</build>
+
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/consecutive_empty_elements/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/consecutive_empty_elements/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/consecutive_empty_elements/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/consecutive_empty_elements/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,14 @@
+<project>
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>test</groupId>
+    <artifactId>artifact</artifactId>
+    <version>1.0</version>
+
+    <developers>
+        <developer>
+            <organization/>
+            <organizationUrl/>
+        </developer>
+    </developers>
+
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependencies-different-versions/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependencies-different-versions/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependencies-different-versions/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependencies-different-versions/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,18 @@
+<project>
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org</groupId>
+    <artifactId>org-artifact</artifactId>
+    <version>1.0</version>
+    <dependencies>
+        <dependency>
+            <groupId>test</groupId>
+            <artifactId>test-artifact</artifactId>
+            <version>1.0</version>
+        </dependency>
+        <dependency>
+            <groupId>test</groupId>
+            <artifactId>test-artifact</artifactId>
+            <version>1.1</version>
+        </dependency>
+    </dependencies>
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependencies-with-different-versions/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependencies-with-different-versions/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependencies-with-different-versions/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependencies-with-different-versions/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,19 @@
+<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>a</groupId>
+    <artifactId>b</artifactId>
+    <version>1.0</version>
+   <dependencies>
+     <dependency>
+       <groupId>commons-collections</groupId>
+       <artifactId>commons-collections</artifactId>
+       <version>2.0</version>
+     </dependency>
+     <dependency>
+       <groupId>commons-collections</groupId>
+       <artifactId>commons-collections</artifactId>
+       <version>3.1</version>
+     </dependency>
+   </dependencies>
+</project>
\ No newline at end of file

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

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependency-inheritance/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependency-inheritance/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependency-inheritance/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependency-inheritance/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+    <parent>
+    <groupId>org.apache.maven</groupId>
+    <artifactId>maven-parent</artifactId>
+    <version>11</version>
+    <relativePath>maven-parent.xml</relativePath>
+  </parent>
+  <groupId>org.apache.maven</groupId>
+  <artifactId>maven</artifactId>
+  <version>3.0-SNAPSHOT</version>
+  <packaging>pom</packaging>
+
+  <properties>
+    <junitVersion>3.8.1</junitVersion>
+  </properties>
+  <!--start-->
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>${junitVersion}</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+  <!--end-->
+</project>

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

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependency-management-with-interpolation/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependency-management-with-interpolation/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependency-management-with-interpolation/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependency-management-with-interpolation/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,19 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+
+  <artifactId>asm-parent</artifactId>
+  <groupId>asm</groupId>
+  <version>3.0</version>
+  <packaging>pom</packaging>
+
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <artifactId>asm-util</artifactId>
+        <groupId>${project.groupId}</groupId>
+        <version>${project.version}</version>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependency-management-with-interpolation/sub/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependency-management-with-interpolation/sub/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependency-management-with-interpolation/sub/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependency-management-with-interpolation/sub/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,17 @@
+<?xml version="1.0"?><project>
+  <parent>
+    <artifactId>asm-parent</artifactId>
+    <groupId>asm</groupId>
+    <version>3.0</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+
+  <artifactId>asm-xml</artifactId>
+  <version>3.0</version>
+  <dependencies>
+    <dependency>
+      <groupId>asm</groupId>
+      <artifactId>asm-util</artifactId>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependency-order/w-plugin-mngt/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependency-order/w-plugin-mngt/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependency-order/w-plugin-mngt/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependency-order/w-plugin-mngt/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,68 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.apache.maven.its.mng4003</groupId>
+  <artifactId>test</artifactId>
+  <version>1.0-SNAPSHOT</version>
+
+  <name>Maven Integration Test :: MNG-4003</name> 
+  <description>
+    Verify that dependencies survive the project construction in the POM order.
+  </description>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.maven.its.mng4003</groupId>
+      <artifactId>a</artifactId>
+      <version>1</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.its.mng4003</groupId>
+      <artifactId>c</artifactId>
+      <version>1</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.its.mng4003</groupId>
+      <artifactId>b</artifactId>
+      <version>1</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.its.mng4003</groupId>
+      <artifactId>d</artifactId>
+      <version>1</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <!-- NOTE: The combination with a plugin management section is an essential part of the test -->
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <artifactId>maven-clean-plugin</artifactId>
+          <version>2.3</version>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+  </build>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependency-order/wo-plugin-mngt/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependency-order/wo-plugin-mngt/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependency-order/wo-plugin-mngt/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependency-order/wo-plugin-mngt/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,66 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.apache.maven.its.mng4003</groupId>
+  <artifactId>test</artifactId>
+  <version>1.0-SNAPSHOT</version>
+
+  <name>Maven Integration Test :: MNG-4003</name> 
+  <description>
+    Verify that dependencies survive the project construction in the POM order.
+  </description>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.maven.its.mng4003</groupId>
+      <artifactId>a</artifactId>
+      <version>1</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.its.mng4003</groupId>
+      <artifactId>c</artifactId>
+      <version>1</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.its.mng4003</groupId>
+      <artifactId>b</artifactId>
+      <version>1</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.its.mng4003</groupId>
+      <artifactId>d</artifactId>
+      <version>1</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <!-- NOTE: The combination with a plugin section is an essential part of the test -->
+    <plugins>
+      <plugin>
+        <artifactId>maven-clean-plugin</artifactId>
+        <version>2.3</version>
+      </plugin>
+    </plugins>
+  </build>
+</project>

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

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

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

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependency-scope/sub/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependency-scope/sub/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependency-scope/sub/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dependency-scope/sub/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,24 @@
+<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>
+      <version>1.0</version>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file

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

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dual-execution-ids/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dual-execution-ids/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dual-execution-ids/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dual-execution-ids/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,27 @@
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.maven.mercury</groupId>
+  <artifactId>mercury-parent</artifactId>
+  <version>1.0.0-alpha-3-SNAPSHOT</version>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-remote-resources-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>process</goal>
+            </goals>
+            <configuration>
+              <resourceBundles>
+                <resourceBundle>org.apache:apache-jar-resource-bundle:1.5</resourceBundle>
+              </resourceBundles>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+    </build>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dual-execution-ids/sub/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dual-execution-ids/sub/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dual-execution-ids/sub/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/dual-execution-ids/sub/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,43 @@
+<project>
+
+<parent>
+  <artifactId>mercury-parent</artifactId>
+  <groupId>org.apache.maven.mercury</groupId>
+  <version>1.0.0-alpha-3-SNAPSHOT</version>
+</parent>
+
+<modelVersion>4.0.0</modelVersion>
+<groupId>org.apache.maven.mercury</groupId>
+<artifactId>mercury-util</artifactId>
+<name>Mercury Shared Utilities</name>
+<version>1.0.0-alpha-3-SNAPSHOT</version>
+ <build>
+  <pluginManagement>
+    <plugins>
+      <plugin>
+        <artifactId>maven-remote-resources-plugin</artifactId>
+        <version>1.0</version>
+      </plugin>
+      </plugins>
+  </pluginManagement>
+  <plugins>
+    <plugin>
+      <artifactId>maven-remote-resources-plugin</artifactId>
+      <version>1.0</version>
+      <executions>
+        <execution>
+          <id>default</id> 
+          <goals>
+            <goal>process</goal>
+          </goals>
+          <configuration>
+            <resourceBundles>
+              <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
+            </resourceBundles>
+          </configuration>
+        </execution>
+      </executions>
+    </plugin>
+     </plugins>
+</build>
+  </project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/duplicate-exclusions-dependency/nexus-parent.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/duplicate-exclusions-dependency/nexus-parent.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/duplicate-exclusions-dependency/nexus-parent.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/duplicate-exclusions-dependency/nexus-parent.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,34 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+    <!--
+  <parent>
+    <groupId>org.sonatype.forge</groupId>
+    <artifactId>forge-parent</artifactId>
+    <version>3</version>
+  </parent>
+  -->
+  <groupId>org.sonatype.nexus</groupId>
+  <artifactId>nexus-parent</artifactId>
+  <version>8-SNAPSHOT</version>
+
+  <properties>
+    <plexus.version>1.0-beta-3.0.5-SNAPSHOT</plexus.version>
+  </properties>
+
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>org.codehaus.plexus</groupId>
+        <artifactId>plexus-container-default</artifactId>
+        <version>${plexus.version}</version>
+        <exclusions>
+          <exclusion>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging-api</artifactId>
+          </exclusion>
+        </exclusions>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/duplicate-exclusions-dependency/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/duplicate-exclusions-dependency/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/duplicate-exclusions-dependency/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/duplicate-exclusions-dependency/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,33 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+	<modelVersion>4.0.0</modelVersion>
+
+	<parent>
+		<groupId>org.sonatype.nexus</groupId>
+		<artifactId>nexus-parent</artifactId>
+		<version>8-SNAPSHOT</version>
+		<relativePath>nexus-parent.xml</relativePath>
+	</parent>
+
+    <groupId>org.sonatype.nexus</groupId>
+	<artifactId>nexus</artifactId>
+	<packaging>pom</packaging>
+	<name>Nexus Repository Manager</name>
+	<version>1.3.0-SNAPSHOT</version>
+
+	<dependencyManagement>
+		<dependencies>
+			<dependency>
+				<groupId>org.codehaus.plexus</groupId>
+				<artifactId>plexus-container-default</artifactId>
+				<scope>provided</scope>
+				<version>${plexus.version}</version>
+				<exclusions>
+					<exclusion>
+						<groupId>commons-logging</groupId>
+						<artifactId>commons-logging-api</artifactId>
+					</exclusion>
+				</exclusions>
+			</dependency>
+        </dependencies>
+	</dependencyManagement>
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/duplicate-exclusions-dependency/sub/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/duplicate-exclusions-dependency/sub/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/duplicate-exclusions-dependency/sub/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/duplicate-exclusions-dependency/sub/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,16 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <parent>
+    <groupId>org.sonatype.nexus</groupId>
+    <artifactId>nexus</artifactId>
+    <version>1.3.0-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>nexus-proxy</artifactId>
+  <dependencies>
+    <!-- For App basic -->
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-container-default</artifactId>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/empty-distMng-repo-url/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/empty-distMng-repo-url/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/empty-distMng-repo-url/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/empty-distMng-repo-url/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,15 @@
+<project >
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.commons</groupId>
+  <artifactId>commons-parent</artifactId>
+  <packaging>pom</packaging>
+  <version>11</version>
+
+  <distributionManagement>
+    <repository>
+      <id>dummy</id>
+      <name>Dummy to avoid accidental deploys</name>
+      <url />
+    </repository>
+  </distributionManagement>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/empty-scm/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/empty-scm/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/empty-scm/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/empty-scm/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,58 @@
+<?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>
+
+  <!--
+  This (almost) minimal POM tests direct inheritance from the super POM.
+  -->
+
+  <groupId>org.apache.maven.its.mng3843</groupId>
+  <artifactId>test-1</artifactId>
+  <version>0.1</version>
+
+  <name>test</name>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.its.plugins</groupId>
+        <artifactId>maven-it-plugin-expression</artifactId>
+        <version>2.1-SNAPSHOT</version>
+        <executions>
+          <execution>
+            <phase>validate</phase>
+            <goals>
+              <goal>eval</goal>
+            </goals>
+            <configuration>
+              <outputFile>target/pom.properties</outputFile>
+              <expressions>
+                <expression>project</expression>
+              </expressions>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/equal-plugin-deps/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/equal-plugin-deps/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/equal-plugin-deps/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/equal-plugin-deps/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,64 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.apache.maven.its.mng3838</groupId>
+  <artifactId>test</artifactId>
+  <version>1.0-SNAPSHOT</version>
+
+  <name>Maven Integration Test :: MNG-3838</name> 
+  <description>
+    Verify that using the same dependency for different plugins doesn't blow up the project builder.
+  </description>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.its.plugins</groupId>
+        <artifactId>maven-it-plugin-a</artifactId>
+        <version>1.0-SNAPSHOT</version>
+        <dependencies>
+          <!-- NOTE: That's exactly the same dependency as for the other plugin. -->
+          <dependency>
+            <groupId>org.apache.maven.its.mng3838</groupId>
+            <artifactId>dep</artifactId>
+            <version>123</version>
+          </dependency>
+        </dependencies>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.its.plugins</groupId>
+        <artifactId>maven-it-plugin-b</artifactId>
+        <version>1.0-SNAPSHOT</version>
+        <dependencies>
+          <!-- NOTE: That's exactly the same dependency as for the other plugin. -->
+          <dependency>
+            <groupId>org.apache.maven.its.mng3838</groupId>
+            <artifactId>dep</artifactId>
+            <version>123</version>
+          </dependency>
+        </dependencies>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/equal-plugin-exec-ids/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/equal-plugin-exec-ids/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/equal-plugin-exec-ids/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/equal-plugin-exec-ids/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,83 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<project>
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.apache.maven.its.mng3821</groupId>
+  <artifactId>test</artifactId>
+  <version>1.0-SNAPSHOT</version>
+
+  <name>Maven Integration Test :: MNG-3821</name> 
+  <description>
+    Verify that using the same id for executions/reportsets of different plugins doesn't blow up the project builder.
+  </description>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.its.plugins</groupId>
+        <artifactId>maven-it-plugin-a</artifactId>
+        <version>1.0-SNAPSHOT</version>
+        <executions>
+          <execution>
+            <id>the-one-and-only-id</id>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.its.plugins</groupId>
+        <artifactId>maven-it-plugin-b</artifactId>
+        <version>1.0-SNAPSHOT</version>
+        <executions>
+          <execution>
+            <id>the-one-and-only-id</id>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.its.plugins</groupId>
+        <artifactId>maven-it-plugin-a</artifactId>
+        <version>1.0-SNAPSHOT</version>
+        <reportSets>
+          <reportSet>
+            <id>the-one-and-only-id</id>
+          </reportSet>
+        </reportSets>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.its.plugins</groupId>
+        <artifactId>maven-it-plugin-b</artifactId>
+        <version>1.0-SNAPSHOT</version>
+        <reportSets>
+          <reportSet>
+            <id>the-one-and-only-id</id>
+          </reportSet>
+        </reportSets>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/execution-configuration-join/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/execution-configuration-join/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/execution-configuration-join/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/execution-configuration-join/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,35 @@
+<project>
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.sonatype.nexus</groupId>
+    <artifactId>nexus</artifactId>
+    <version>1.3.0-SNAPSHOT</version>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.codehaus.modello</groupId>
+                <artifactId>modello-maven-plugin</artifactId>
+                <version>1.0-alpha-21</version>           
+            </plugin>
+        </plugins>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.codehaus.modello</groupId>
+                    <artifactId>modello-maven-plugin</artifactId>
+                    <version>1.0-alpha-21</version>
+                <executions>
+                    <execution>
+                        <configuration>
+                            <fileset dir="${basedir}">
+                                <include name="LICENSE.txt" />
+                                <include name="NOTICE.txt" />
+                            </fileset>
+                        </configuration>
+                    </execution>
+                </executions>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+    </build>
+
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/execution-configuration-subcollections/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/execution-configuration-subcollections/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/execution-configuration-subcollections/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/execution-configuration-subcollections/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,41 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>test</groupId>
+    <artifactId>nexus</artifactId>
+    <packaging>pom</packaging>
+    <name>Nexus Repository Manager</name>
+    <version>1.1-M1</version>
+
+    <!-- build information for the project -->
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-enforcer-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>enforce</goal>
+                        </goals>
+                        <id>enforce</id>
+                        <configuration>
+                            <rules>
+                                <bannedDependencies>
+                                    <excludes>
+                                        <exclude>commons-logging:*</exclude>
+                                    </excludes>
+                                    <message>a</message>
+                                </bannedDependencies>
+                                <bannedDependencies>
+                                    <excludes>
+                                        <exclude>*:plexus-component-api</exclude>
+                                    </excludes>
+                                </bannedDependencies>
+                            </rules>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+</project>
\ No newline at end of file

Added: maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/execution-configuration/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/execution-configuration/pom.xml?rev=769664&view=auto
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/execution-configuration/pom.xml (added)
+++ maven/components/branches/MNG-2766/maven-core/src/test/resources-project-builder/execution-configuration/pom.xml Wed Apr 29 05:20:38 2009
@@ -0,0 +1,58 @@
+<project>
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.sonatype.nexus</groupId>
+    <artifactId>nexus</artifactId>
+    <version>1.3.0-SNAPSHOT</version>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.codehaus.modello</groupId>
+                <artifactId>modello-maven-plugin</artifactId>
+                <version>1.0-alpha-21</version>
+                <executions>
+                    <execution>
+                        <id>nexus.xml</id>
+                        <goals>
+                            <goal>java</goal>
+                            <goal>xpp3-reader</goal>
+                            <goal>xpp3-writer</goal>
+                        </goals>
+                        <configuration>
+                            <version>1.0.8</version>
+                            <packagedVersions>
+                                <packagedVersion>1.0.0</packagedVersion>
+                                <packagedVersion>1.0.1</packagedVersion>
+                                <packagedVersion>1.0.6</packagedVersion>
+                            </packagedVersions>
+                            <model>src/main/mdo/nexus.xml</model>
+                        </configuration>
+                    </execution>
+
+                    <execution>
+                        <id>security.xml</id>
+                        <goals>
+                            <goal>java1</goal>
+                            <goal>xpp3-reader1</goal>
+                            <goal>xpp3-writer1</goal>
+                        </goals>
+                        <configuration>
+                            <version>1.0.0</version>
+                            <model>src/main/mdo/security.xml</model>
+                        </configuration>
+                    </execution>
+
+                </executions>
+            </plugin>
+        </plugins>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.codehaus.modello</groupId>
+                    <artifactId>modello-maven-plugin</artifactId>
+                    <version>1.0-alpha-21</version>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+    </build>
+
+</project>
\ No newline at end of file