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 15:49:35 UTC

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

Author: jvanzyl
Date: Wed Jan 10 06:49:35 2007
New Revision: 494834

URL: http://svn.apache.org/viewvc?view=rev&rev=494834
Log:
o using new plugin configuraiton emitter plugin to see how interpolation is handled

Removed:
    maven/core-integration-testing/trunk/core-integration-tests/src/test/resources/it0104/src/test/
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=494834&r1=494833&r2=494834
==============================================================================
--- 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 06:49:35 2007
@@ -9,7 +9,6 @@
         Map.Entry.</description>
   <packaging>jar</packaging>
   <version>1.0-SNAPSHOT</version>
-  <name>Maven Quick Start Archetype</name>
   <url>http://maven.apache.org</url>
   <dependencies>
     <dependency>
@@ -24,15 +23,26 @@
     <!-- pluginManagement -->
       <plugins>
         <plugin>
-          <artifactId>maven-surefire-plugin</artifactId>
+          <groupId>org.apache.maven.its.plugins</groupId>
+          <artifactId>maven-it-plugin-configuration</artifactId>
           <configuration>
-            <systemProperties>
-              <property>
-                <name>target.dir</name>
-                <value>${project.build.directory}</value>
-              </property>
-            </systemProperties>
+            <dom>
+              <name>${project.name}</name>
+              <systemProperties>
+                <property>
+                  <name>target.dir</name>
+                  <value>${project.build.directory}</value>
+                </property>
+              </systemProperties>
+            </dom>
           </configuration>
+          <executions>
+            <execution>
+              <goals>
+                <goal>config</goal>
+              </goals>
+            </execution>
+          </executions>
         </plugin>
       </plugins>
     <!-- /pluginManagement -->