mirror of https://github.com/apache/maven.git
o adding IT it0071
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@465845 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ca6e086349
commit
a7e17b4a2f
|
@ -0,0 +1,34 @@
|
|||
<project>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.apache.maven.it</groupId>
|
||||
<artifactId>maven-core-it0071</artifactId>
|
||||
<description>Verifies that dotted property references work within plugin
|
||||
configurations.</description>
|
||||
<packaging>jar</packaging>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>3.8.1</version>
|
||||
<type>jar</type>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-core-it-plugin</artifactId>
|
||||
<version>1.0</version>
|
||||
<configuration>
|
||||
<pluginItem>${m2.foo}</pluginItem>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<properties>
|
||||
<m2.foo>foo2</m2.foo>
|
||||
</properties>
|
||||
</project>
|
Loading…
Reference in New Issue