You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by be...@apache.org on 2009/02/01 23:23:21 UTC

svn commit: r739869 - in /maven/core-integration-testing/trunk/core-it-suite/src/test: java/org/apache/maven/it/ resources/mng-1415/ resources/mng-1415/src/ resources/mng-1908/ resources/mng-1908/repo/org.apache.maven.its.mng1908/ resources/mng-1908/re...

Author: bentmann
Date: Sun Feb  1 22:23:21 2009
New Revision: 739869

URL: http://svn.apache.org/viewvc?rev=739869&view=rev
Log:
o Decoupled ITs from production plugins/deps

Added:
    maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-1908/repo/org.apache.maven.its.mng1908/
    maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-1908/repo/org.apache.maven.its.mng1908/jars/
    maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-1908/repo/org.apache.maven.its.mng1908/jars/artifact-1.0-SNAPSHOT.jar
Removed:
    maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-1415/src/
    maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-1908/repo/org.apache.maven/
    maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2054/plugin/
Modified:
    maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng1415QuotedSystemPropertiesTest.java
    maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng1493NonStandardModulePomNamesTest.java
    maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng1830ShowVersionTest.java
    maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng1908LegacySnapshotUpdateTest.java
    maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng2052InterpolateWithSettingsProfilePropertiesTest.java
    maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng2054PluginExecutionInheritanceTest.java
    maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-1415/pom.xml
    maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-1908/pom.xml
    maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2052/pom.xml
    maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2054/pom.xml
    maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2054/project/pom.xml
    maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2054/project/project-level2/pom.xml
    maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2054/project/project-level2/project-level3/pom.xml
    maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2054/project/project-level2/project-level3/project-jar/pom.xml

Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng1415QuotedSystemPropertiesTest.java
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng1415QuotedSystemPropertiesTest.java?rev=739869&r1=739868&r2=739869&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng1415QuotedSystemPropertiesTest.java (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng1415QuotedSystemPropertiesTest.java Sun Feb  1 22:23:21 2009
@@ -25,6 +25,7 @@
 import java.io.File;
 import java.util.ArrayList;
 import java.util.List;
+import java.util.Properties;
 
 /**
  * This is a test set for <a href="http://jira.codehaus.org/browse/MNG-1415">MNG-1415</a>.
@@ -42,14 +43,19 @@
         throws Exception
     {
         File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-1415" );
+
         Verifier verifier = new Verifier( testDir.getAbsolutePath() );
+        verifier.setAutoclean( false );
+        verifier.deleteDirectory( "target" );
         List cliOptions = new ArrayList();
         cliOptions.add( "-Dtest.property=\"Test Property\"" );
         verifier.setCliOptions( cliOptions );
-        verifier.executeGoal( "test" );
+        verifier.executeGoal( "validate" );
         verifier.verifyErrorFreeLog();
         verifier.resetStreams();
 
+        Properties props = verifier.loadProperties( "target/cli.properties" );
+        assertEquals( "Test Property", props.getProperty( "stringParam" ) );
     }
-}
 
+}

Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng1493NonStandardModulePomNamesTest.java
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng1493NonStandardModulePomNamesTest.java?rev=739869&r1=739868&r2=739869&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng1493NonStandardModulePomNamesTest.java (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng1493NonStandardModulePomNamesTest.java Sun Feb  1 22:23:21 2009
@@ -40,6 +40,7 @@
         Verifier verifier;
 
         verifier = new Verifier( testDir.getAbsolutePath() );
+        verifier.setAutoclean( false );
 
         verifier.executeGoal( "initialize" );
 

Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng1830ShowVersionTest.java
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng1830ShowVersionTest.java?rev=739869&r1=739868&r2=739869&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng1830ShowVersionTest.java (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng1830ShowVersionTest.java Sun Feb  1 22:23:21 2009
@@ -52,9 +52,10 @@
         File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-1830" );
 
         Verifier verifier = new Verifier( testDir.getAbsolutePath() );
+        verifier.setAutoclean( false );
         List cliOptions = Collections.singletonList( "-X" );
         verifier.setCliOptions( cliOptions );
-        verifier.executeGoal( "clean" );
+        verifier.executeGoal( "validate" );
         verifier.verifyErrorFreeLog();
         verifier.resetStreams();
 

Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng1908LegacySnapshotUpdateTest.java
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng1908LegacySnapshotUpdateTest.java?rev=739869&r1=739868&r2=739869&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng1908LegacySnapshotUpdateTest.java (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng1908LegacySnapshotUpdateTest.java Sun Feb  1 22:23:21 2009
@@ -41,12 +41,15 @@
         throws Exception
     {
         File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-1908" );
+
         Verifier verifier = new Verifier( testDir.getAbsolutePath() );
-        verifier.deleteArtifact( "org.apache.maven", "maven-core-it-support", "1.0-SNAPSHOT", "jar" );
-        verifier.executeGoal( "compile" );
-        verifier.assertArtifactPresent( "org.apache.maven", "maven-core-it-support", "1.0-SNAPSHOT", "jar" );
+        verifier.setAutoclean( false );
+        verifier.deleteArtifacts( "org.apache.maven.its.mng1908" );
+        verifier.executeGoal( "validate" );
         verifier.verifyErrorFreeLog();
         verifier.resetStreams();
+
+        verifier.assertArtifactPresent( "org.apache.maven.its.mng1908", "artifact", "1.0-SNAPSHOT", "jar" );
     }
-}
 
+}

Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng2052InterpolateWithSettingsProfilePropertiesTest.java
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng2052InterpolateWithSettingsProfilePropertiesTest.java?rev=739869&r1=739868&r2=739869&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng2052InterpolateWithSettingsProfilePropertiesTest.java (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng2052InterpolateWithSettingsProfilePropertiesTest.java Sun Feb  1 22:23:21 2009
@@ -39,14 +39,16 @@
         throws Exception
     {
         File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-2052" );
+
         Verifier verifier = new Verifier( testDir.getAbsolutePath() );
+        verifier.setAutoclean( false );
         List cliOptions = new ArrayList();
-        cliOptions.add( "--settings settings.xml" );
+        cliOptions.add( "--settings" );
+        cliOptions.add( "settings.xml" );
         verifier.setCliOptions( cliOptions );
-        verifier.executeGoal( "compile" );
+        verifier.executeGoal( "validate" );
         verifier.verifyErrorFreeLog();
         verifier.resetStreams();
-
     }
-}
 
+}

Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng2054PluginExecutionInheritanceTest.java
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng2054PluginExecutionInheritanceTest.java?rev=739869&r1=739868&r2=739869&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng2054PluginExecutionInheritanceTest.java (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng2054PluginExecutionInheritanceTest.java Sun Feb  1 22:23:21 2009
@@ -23,6 +23,8 @@
 import org.apache.maven.it.util.ResourceExtractor;
 
 import java.io.File;
+import java.util.List;
+import java.util.Arrays;
 
 /**
  * This is a test set for <a href="http://jira.codehaus.org/browse/MNG-2054">MNG-2054</a>.
@@ -46,9 +48,15 @@
     {
         File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-2054" );
         Verifier verifier = new Verifier( testDir.getAbsolutePath() );
-        verifier.executeGoal( "package" );
+        verifier.setAutoclean( false );
+        verifier.deleteDirectory( "project/project-level2/project-level3/project-jar/target" );
+        verifier.executeGoal( "validate" );
         verifier.verifyErrorFreeLog();
         verifier.resetStreams();
+
+        List executions = verifier.loadLines( "project/project-level2/project-level3/project-jar/target/exec.log", "UTF-8" );
+        List expected = Arrays.asList( new String[] { "once" } );
+        assertEquals( expected, executions );
     }
 
 }

Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-1415/pom.xml
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-1415/pom.xml?rev=739869&r1=739868&r2=739869&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-1415/pom.xml (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-1415/pom.xml Sun Feb  1 22:23:21 2009
@@ -1,30 +1,54 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
 <project>
   <modelVersion>4.0.0</modelVersion>
-  <name>Maven Integration Test :: it0098</name> 
-  <groupId>org.apache.maven.its.it0098</groupId>
-  <artifactId>maven-it-it0098</artifactId>
-  <description>Test that quoted system properties are processed correctly. [MNG-1415]</description>
+
+  <groupId>org.apache.maven.its.mng1415</groupId>
+  <artifactId>test</artifactId>
   <version>1</version>
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-    </dependency>
-  </dependencies>
-  
+
+  <name>Maven Integration Test :: MNG-1415</name> 
+  <description>
+    Test that quoted system properties are processed correctly.
+  </description>
+
   <build>
     <plugins>
       <plugin>
-        <artifactId>maven-surefire-plugin</artifactId>
+        <groupId>org.apache.maven.its.plugins</groupId>
+        <artifactId>maven-it-plugin-configuration</artifactId>
+        <version>2.1-SNAPSHOT</version>
         <configuration>
-          <systemProperties>
-            <property>
-              <name>test.property</name>
-              <value>${test.property}</value>
-            </property>
-          </systemProperties>
+          <propertiesFile>target/cli.properties</propertiesFile>
+          <stringParam>${test.property}</stringParam>
         </configuration>
+        <executions>
+          <execution>
+            <phase>validate</phase>
+            <goals>
+              <goal>config</goal>
+            </goals>
+          </execution>
+        </executions>
       </plugin>
     </plugins>
   </build>

Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-1908/pom.xml
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-1908/pom.xml?rev=739869&r1=739868&r2=739869&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-1908/pom.xml (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-1908/pom.xml Sun Feb  1 22:23:21 2009
@@ -1,22 +1,70 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
 <project>
   <modelVersion>4.0.0</modelVersion>
-  <name>Maven Integration Test :: it0092</name> 
-  <groupId>org.apache.maven.its.it0092</groupId>
-  <artifactId>maven-it-it0092</artifactId>
-  <description>Test that legacy repositories with legacy snapshots download correctly.</description>
+
+  <groupId>org.apache.maven.its.mng1908</groupId>
+  <artifactId>test</artifactId>
   <version>1.0</version>
+
+  <name>Maven Integration Test :: MNG-1908</name> 
+  <description>
+    Test that legacy repositories with legacy snapshots download correctly.
+  </description>
+
   <dependencies>
     <dependency>
-      <groupId>org.apache.maven</groupId>
-      <artifactId>maven-core-it-support</artifactId>
+      <groupId>org.apache.maven.its.mng1908</groupId>
+      <artifactId>artifact</artifactId>
       <version>1.0-SNAPSHOT</version>
     </dependency>
   </dependencies>
+
   <repositories>
     <repository>
       <id>it0092</id>
       <url>file://localhost/${basedir}/repo</url>
       <layout>legacy</layout>
+      <snapshots>
+        <checksumPolicy>ignore</checksumPolicy>
+      </snapshots>
     </repository>
   </repositories>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.its.plugins</groupId>
+        <artifactId>maven-it-plugin-dependency-resolution</artifactId>
+        <version>2.1-SNAPSHOT</version>
+        <executions>
+          <execution>
+            <phase>validate</phase>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
 </project>

Added: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-1908/repo/org.apache.maven.its.mng1908/jars/artifact-1.0-SNAPSHOT.jar
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-1908/repo/org.apache.maven.its.mng1908/jars/artifact-1.0-SNAPSHOT.jar?rev=739869&view=auto
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-1908/repo/org.apache.maven.its.mng1908/jars/artifact-1.0-SNAPSHOT.jar (added)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-1908/repo/org.apache.maven.its.mng1908/jars/artifact-1.0-SNAPSHOT.jar Sun Feb  1 22:23:21 2009
@@ -0,0 +1 @@
+THIS IS NOT A JAR

Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2052/pom.xml
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2052/pom.xml?rev=739869&r1=739868&r2=739869&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2052/pom.xml (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2052/pom.xml Sun Feb  1 22:23:21 2009
@@ -1,21 +1,62 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
 <project>
   <modelVersion>4.0.0</modelVersion>
-  <name>Maven Integration Test :: it0101</name> 
-  <groupId>org.apache.maven.its.it0101</groupId>
-  <artifactId>maven-it-it0101</artifactId>
-  <description>Test that properties defined in an active profile in the user's
-        settings are available for interpolation of systemPath in a dependency.
-        [MNG-2052]</description>
+
+  <groupId>org.apache.maven.its.mng2052</groupId>
+  <artifactId>test</artifactId>
   <version>1.0</version>
 
+  <name>Maven Integration Test :: MNG-2052</name> 
+  <description>
+    Test that properties defined in an active profile in the user's
+    settings are available for interpolation of systemPath in a dependency.
+  </description>
+
   <dependencies>
     <dependency>
-      <groupId>org.apache.maven.its.it0101</groupId>
+      <groupId>org.apache.maven.its.mng2052</groupId>
       <artifactId>test-dependency</artifactId>
       <version>1</version>
       <scope>system</scope>
       <systemPath>${basedir}/${libdir}/test-dep.txt</systemPath>
     </dependency>
   </dependencies>
-</project>
 
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.its.plugins</groupId>
+        <artifactId>maven-it-plugin-dependency-resolution</artifactId>
+        <version>2.1-SNAPSHOT</version>
+        <executions>
+          <execution>
+            <phase>validate</phase>
+            <goals>
+              <goal>compile</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2054/pom.xml
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2054/pom.xml?rev=739869&r1=739868&r2=739869&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2054/pom.xml (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2054/pom.xml Sun Feb  1 22:23:21 2009
@@ -1,14 +1,61 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
 <project>
   <modelVersion>4.0.0</modelVersion>
-  <name>Maven Integration Test :: it0096</name> 
-  <groupId>org.apache.maven.its.it0096</groupId>
-  <artifactId>maven-it-it0096</artifactId>
-  <description>Test that plugin executions from &gt;1 step of inheritance don't run multiple times. </description>
+
+  <groupId>org.apache.maven.its.mng2054</groupId>
+  <artifactId>test</artifactId>
   <version>1</version>
   <packaging>pom</packaging>
 
+  <name>Maven Integration Test :: MNG-2054</name> 
+  <description>
+    Test that plugin executions from &gt;1 step of inheritance don't run multiple times.
+  </description>
+
   <modules>
-    <module>plugin</module>
     <module>project</module>
   </modules>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.its.plugins</groupId>
+        <artifactId>maven-it-plugin-log-file</artifactId>
+        <version>2.1-SNAPSHOT</version>
+        <configuration>
+          <logFile>target/exec.log</logFile>
+          <string>once</string>
+        </configuration>
+        <executions>
+          <execution>
+            <id>test</id>
+            <phase>validate</phase>
+            <goals>
+              <goal>log-string</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
 </project>

Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2054/project/pom.xml
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2054/project/pom.xml?rev=739869&r1=739868&r2=739869&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2054/project/pom.xml (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2054/project/pom.xml Sun Feb  1 22:23:21 2009
@@ -1,32 +1,17 @@
 <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>
+
   <parent>
-    <groupId>org.apache.maven.its.it0096</groupId>
-    <artifactId>maven-it-it0096</artifactId>
+    <groupId>org.apache.maven.its.mng2054</groupId>
+    <artifactId>test</artifactId>
     <version>1</version>
   </parent>
+
   <artifactId>project</artifactId>
   <packaging>pom</packaging>
+
   <modules>
     <module>project-level2</module>
   </modules>
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.its.it0096</groupId>
-        <artifactId>maven-it0096-plugin</artifactId>
-        <version>1</version>
-        <executions>
-          <execution>
-            <id>it0096</id>
-            <phase>initialize</phase>
-            <goals>
-              <goal>it0096</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>
-    </plugins>
-    </build>
 </project>

Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2054/project/project-level2/pom.xml
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2054/project/project-level2/pom.xml?rev=739869&r1=739868&r2=739869&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2054/project/project-level2/pom.xml (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2054/project/project-level2/pom.xml Sun Feb  1 22:23:21 2009
@@ -1,13 +1,16 @@
 <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>
+
   <parent>
-    <groupId>org.apache.maven.its.it0096</groupId>
+    <groupId>org.apache.maven.its.mng2054</groupId>
     <artifactId>project</artifactId>
     <version>1</version>
   </parent>
+
   <artifactId>project-level2</artifactId>
   <packaging>pom</packaging>
+
   <modules>
     <module>project-level3</module>
   </modules>

Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2054/project/project-level2/project-level3/pom.xml
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2054/project/project-level2/project-level3/pom.xml?rev=739869&r1=739868&r2=739869&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2054/project/project-level2/project-level3/pom.xml (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2054/project/project-level2/project-level3/pom.xml Sun Feb  1 22:23:21 2009
@@ -1,13 +1,16 @@
 <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>
+
   <parent>
-    <groupId>org.apache.maven.its.it0096</groupId>
+    <groupId>org.apache.maven.its.mng2054</groupId>
     <artifactId>project-level2</artifactId>
     <version>1</version>
   </parent>
+
   <artifactId>project-level3</artifactId>
   <packaging>pom</packaging>
+
   <modules>
     <module>project-jar</module>
   </modules>

Modified: maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2054/project/project-level2/project-level3/project-jar/pom.xml
URL: http://svn.apache.org/viewvc/maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2054/project/project-level2/project-level3/project-jar/pom.xml?rev=739869&r1=739868&r2=739869&view=diff
==============================================================================
--- maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2054/project/project-level2/project-level3/project-jar/pom.xml (original)
+++ maven/core-integration-testing/trunk/core-it-suite/src/test/resources/mng-2054/project/project-level2/project-level3/project-jar/pom.xml Sun Feb  1 22:23:21 2009
@@ -1,33 +1,12 @@
 <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>
+
   <parent>
-    <groupId>org.apache.maven.its.it0096</groupId>
+    <groupId>org.apache.maven.its.mng2054</groupId>
     <artifactId>project-level3</artifactId>
     <version>1</version>
   </parent>
-  <modelVersion>4.0.0</modelVersion>
+
   <artifactId>project-jar</artifactId>
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.1</version>
-      <scope>test</scope>
-    </dependency>
-  </dependencies>
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-jar-plugin</artifactId>
-        <executions>
-          <execution>
-            <goals>
-              <goal>test-jar</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>
-    </plugins>
-  </build>
 </project>