You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jd...@apache.org on 2009/05/20 18:53:11 UTC

svn commit: r776764 - /maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4167/pom.xml

Author: jdcasey
Date: Wed May 20 16:53:11 2009
New Revision: 776764

URL: http://svn.apache.org/viewvc?rev=776764&view=rev
Log:
[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.

Modified:
    maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4167/pom.xml

Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4167/pom.xml
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4167/pom.xml?rev=776764&r1=776763&r2=776764&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4167/pom.xml (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-4167/pom.xml Wed May 20 16:53:11 2009
@@ -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>