[MNG-4167] Adding expressions to a dependency in dependencyManagement, along with groupId and artifactId for the project, to check that all artifact coordinate elements are transformed.

git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@776764 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
John Dennis Casey 2009-05-20 16:53:11 +00:00
parent 4e150340e0
commit cc47b0513e
1 changed files with 14 additions and 2 deletions

View File

@ -1,10 +1,22 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.its.mng4167</groupId>
<artifactId>mng-4167</artifactId>
<groupId>org.apache.maven.its.mng4167.${java.specification.version}</groupId>
<artifactId>mng-4167-${java.specification.version}</artifactId>
<packaging>pom</packaging>
<version>1-${java.specification.version}</version>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>some.group.id.${java.specification.version}</groupId>
<artifactId>some-artifact-id-${java.specification.version}</artifactId>
<version>1-${java.specification.version}</version>
<classifier>cls-${java.specification.version}</classifier>
<type>jni-${java.specification.version}</type>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>