You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jv...@apache.org on 2007/01/10 17:52:09 UTC

svn commit: r494890 - /maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0104/pom.xml

Author: jvanzyl
Date: Wed Jan 10 08:52:08 2007
New Revision: 494890

URL: http://svn.apache.org/viewvc?view=rev&rev=494890
Log:
o looking at the ${project.build.directory} in raw output versus value that is interpolated and used to populate mojos
  we have a nasty difference that works by fluke the raw DOM that is output as PlexusConfiguration field in a mojo is not
  fully populated.

Modified:
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0104/pom.xml

Modified: maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0104/pom.xml
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0104/pom.xml?view=diff&rev=494890&r1=494889&r2=494890
==============================================================================
--- maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0104/pom.xml (original)
+++ maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0104/pom.xml Wed Jan 10 08:52:08 2007
@@ -7,6 +7,9 @@
   <description>
     Verify that plugin configurations are interpolated correctly.
   </description>
+  <organization>
+    <name>Apache</name>
+  </organization>
   <packaging>jar</packaging>
   <version>1.0-SNAPSHOT</version>
   <url>http://maven.apache.org</url>
@@ -26,14 +29,19 @@
           <groupId>org.apache.maven.its.plugins</groupId>
           <artifactId>maven-it-plugin-configuration</artifactId>
           <configuration>
+            <outputDirectory>${project.build.directory}/config-output</outputDirectory>
             <dom>
+              <basedir>${basedir}</basedir>
               <modelVersion>${project.modelVersion}</modelVersion>
               <name>${project.name}</name>
               <groupId>${project.groupId}</groupId>
-              <description>$project.description}</description>
+              <description>${project.description}</description>
               <packaging>${project.packaging}</packaging>
               <version>${project.version}</version>
-              <url>${project.url</url>
+              <url>${project.url}</url>
+              <organization>
+                <name>${project.organization.name}</name>
+              </organization>
               <build>
                 <directory>${project.build.directory}</directory>
                 <outputDirectory>${project.build.outputDirectory}</outputDirectory>