mirror of https://github.com/apache/maven.git
fixing the deprecated property syntax
git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@641122 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
80bc3d4872
commit
2d19186791
|
@ -12,7 +12,7 @@
|
|||
<version>2.1-SNAPSHOT</version>
|
||||
<configuration>
|
||||
<outputDirectory>${basedir}/target/</outputDirectory>
|
||||
<pluginFile>child-touch-${version}.txt</pluginFile>
|
||||
<pluginFile>child-touch-${project.version}.txt</pluginFile>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
<groupId>org.apache.maven.its.plugins</groupId>
|
||||
<version>2.1-SNAPSHOT</version>
|
||||
<configuration>
|
||||
<pluginFile>touch-${version}.txt</pluginFile>
|
||||
<pluginFile>touch-${project.version}.txt</pluginFile>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
<packaging>war</packaging>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>${groupId}</groupId>
|
||||
<groupId>${project.groupId}</groupId>
|
||||
<artifactId>test-component-a</artifactId>
|
||||
<version>0.1</version>
|
||||
</dependency>
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
<packaging>ear</packaging>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>${groupId}</groupId>
|
||||
<groupId>${project.groupId}</groupId>
|
||||
<artifactId>test-component-b</artifactId>
|
||||
<version>0.1</version>
|
||||
<type>war</type>
|
||||
|
|
Loading…
Reference in New Issue