mirror of https://github.com/apache/maven.git
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:
parent
3abe6d5e00
commit
a41993bd3f
|
@ -0,0 +1 @@
|
|||
test dependency
|
|
@ -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>
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
<settings>
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>test</id>
|
||||
<properties>
|
||||
<libdir>lib</libdir>
|
||||
</properties>
|
||||
</profile>
|
||||
</profiles>
|
||||
<activeProfiles>
|
||||
<activeProfile>test</activeProfile>
|
||||
</activeProfiles>
|
||||
</settings>
|
Loading…
Reference in New Issue