o adding IT it0085

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@465859 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2006-10-19 20:49:23 +00:00
parent 925648db18
commit 6c8b532909
4 changed files with 70 additions and 0 deletions

View File

@ -0,0 +1,16 @@
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.maven.it</groupId>
<artifactId>it0085-parent</artifactId>
<version>1.0</version>
</parent>
<artifactId>it0085-dep</artifactId>
<dependencies>
<dependency>
<groupId>org.apache.maven.it</groupId>
<artifactId>pom-dep</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,28 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.it</groupId>
<artifactId>it0085-parent</artifactId>
<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>
<version>1.0</version>
<packaging>pom</packaging>
<modules>
<module>dep</module>
<module>war</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.maven.it</groupId>
<artifactId>pom-dep</artifactId>
<version>1.4.2</version>
<scope>system</scope>
<systemPath>${basedir}/pom.xml</systemPath>
</dependency>
</dependencies>
</dependencyManagement>
</project>

View File

@ -0,0 +1,24 @@
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.maven.it</groupId>
<artifactId>it0085-parent</artifactId>
<version>1.0</version>
</parent>
<artifactId>it0085-war</artifactId>
<packaging>war</packaging>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
</dependency>
<dependency>
<groupId>org.apache.maven.it</groupId>
<artifactId>it0085-dep</artifactId>
<version>1.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,2 @@
<web-xml>
</web-xml>