blob: d876a9c0a55678ba50bac4ee53c8d4873f3a3112 [file] [log] [blame]
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.its.it0085</groupId>
<artifactId>test</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
<name>Maven Integration Test :: it0085</name>
<description>
Verify that system-scoped dependencies get resolved with system scope
when they are resolved transitively via another (non-system)
dependency. Inherited scope should not apply in the case of
system-scoped dependencies, no matter where they are.
</description>
<dependencies>
<dependency>
<groupId>org.apache.maven.its.it0085</groupId>
<artifactId>dep</artifactId>
<version>0.1</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.its.plugins</groupId>
<artifactId>maven-it-plugin-dependency-resolution</artifactId>
<version>2.1-SNAPSHOT</version>
<configuration>
<testClassPath>target/test.txt</testClassPath>
<significantPathLevels>1</significantPathLevels>
</configuration>
<executions>
<execution>
<id>test</id>
<phase>validate</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>