o adding IT it0101

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@465874 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2006-10-19 20:51:11 +00:00
parent 3abe6d5e00
commit a41993bd3f
3 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1 @@
test dependency

View File

@ -0,0 +1,20 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.it0101</groupId>
<artifactId>it0101</artifactId>
<description>Test that properties defined in an active profile in the user's
settings are available for interpolation of systemPath in a dependency.
[MNG-2052]</description>
<version>1.0</version>
<dependencies>
<dependency>
<groupId>test</groupId>
<artifactId>test-dependency</artifactId>
<version>1</version>
<scope>system</scope>
<systemPath>${basedir}/${libdir}/test-dep.txt</systemPath>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,13 @@
<settings>
<profiles>
<profile>
<id>test</id>
<properties>
<libdir>lib</libdir>
</properties>
</profile>
</profiles>
<activeProfiles>
<activeProfile>test</activeProfile>
</activeProfiles>
</settings>