blob: add85a40280825e301c778aeb038f3c6d57667a5 [file] [log] [blame]
<?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.mng4172</groupId>
<artifactId>test</artifactId>
<version>0.1</version>
<name>Maven Integration Test :: MNG-4172</name>
<description>
Test that exclusions defined on a dependency only affect the transitive dependencies of this dependency and not
other dependencies of the project.
</description>
<dependencies>
<dependency>
<groupId>org.apache.maven.its.mng4180</groupId>
<artifactId>a</artifactId>
<version>0.1</version>
<exclusions>
<exclusion>
<!--
This exclusion should have no effect on the transitive dependencies of say org.apache.maven.its.mng4180:c, i.e.
an exclusion defined for a dependency should be limited to the sub tree below this dependency.
-->
<groupId>org.apache.maven.its.mng4180</groupId>
<artifactId>b</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.maven.its.mng4180</groupId>
<artifactId>c</artifactId>
<version>0.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.its.plugins</groupId>
<artifactId>maven-it-plugin-dependency-resolution</artifactId>
<version>2.1-SNAPSHOT</version>
<executions>
<execution>
<id>test</id>
<phase>validate</phase>
<configuration>
<projectArtifacts>target/artifacts.txt</projectArtifacts>
</configuration>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>