o Strengthened IT as suggested by r601095

git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@743057 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2009-02-10 18:48:35 +00:00
parent 98b33e1a8a
commit e63ee1413e
1 changed files with 24 additions and 5 deletions

View File

@ -45,6 +45,7 @@ under the License.
</repositories>
<dependencies>
<!-- model dependencies first, in the order given -->
<dependency>
<groupId>org.apache.maven.its.mng1412</groupId>
<artifactId>a</artifactId>
@ -60,12 +61,30 @@ under the License.
<artifactId>b</artifactId>
<version>0.1</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>mng-1412</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<!-- profile dependencies last, in the order given -->
<dependencies>
<dependency>
<!-- deliberately respecifying this dep to check merging behavior -->
<groupId>org.apache.maven.its.mng1412</groupId>
<artifactId>a</artifactId>
<version>0.1</version>
</dependency>
<dependency>
<groupId>org.apache.maven.its.mng1412</groupId>
<artifactId>d</artifactId>
<version>0.1</version>
</dependency>
</dependencies>
</profile>
</profiles>
<build>
<plugins>