Author: stephenc
Date: Fri Nov 26 16:18:44 2010
New Revision: 1039439

URL: http://svn.apache.org/viewvc?rev=1039439&view=rev
Log:
Make it easier to run integration tests from the command line and use the 
latest version of the maven invoker plugin

Modified:
    maven/release/trunk/maven-release-plugin/pom.xml

Modified: maven/release/trunk/maven-release-plugin/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/release/trunk/maven-release-plugin/pom.xml?rev=1039439&r1=1039438&r2=1039439&view=diff
==============================================================================
--- maven/release/trunk/maven-release-plugin/pom.xml (original)
+++ maven/release/trunk/maven-release-plugin/pom.xml Fri Nov 26 16:18:44 2010
@@ -151,6 +151,23 @@
           </execution>
         </executions>
       </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-invoker-plugin</artifactId>
+        <version>1.5</version>
+        <configuration>
+          <projectsDirectory>src/it</projectsDirectory>
+          <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
+          <postBuildHookScript>verify.bsh</postBuildHookScript>
+          
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
+          <settingsFile>src/it/settings.xml</settingsFile>
+          <debug>true</debug>
+          <properties>
+            <allowReleasePluginSnapshot>true</allowReleasePluginSnapshot>
+            <dryRun>true</dryRun>
+          </properties>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
 
@@ -172,19 +189,6 @@
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-invoker-plugin</artifactId>
-            <version>1.4</version>
-            <configuration>
-              <projectsDirectory>src/it</projectsDirectory>
-              <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
-              <postBuildHookScript>verify.bsh</postBuildHookScript>
-              
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
-              <settingsFile>src/it/settings.xml</settingsFile>
-              <debug>true</debug>
-              <properties>
-                <allowReleasePluginSnapshot>true</allowReleasePluginSnapshot>
-                <dryRun>true</dryRun>
-              </properties>
-            </configuration>
             <executions>
               <execution>
                 <id>integration-test-prepare</id>


Reply via email to