You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2012/09/12 20:04:38 UTC

svn commit: r1384064 - /maven/plugins/trunk/maven-invoker-plugin/src/site/apt/usage.apt.vm

Author: rfscholte
Date: Wed Sep 12 18:04:38 2012
New Revision: 1384064

URL: http://svn.apache.org/viewvc?rev=1384064&view=rev
Log:
Simplify configuration, since some have become the default

Modified:
    maven/plugins/trunk/maven-invoker-plugin/src/site/apt/usage.apt.vm

Modified: maven/plugins/trunk/maven-invoker-plugin/src/site/apt/usage.apt.vm
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-invoker-plugin/src/site/apt/usage.apt.vm?rev=1384064&r1=1384063&r2=1384064&view=diff
==============================================================================
--- maven/plugins/trunk/maven-invoker-plugin/src/site/apt/usage.apt.vm (original)
+++ maven/plugins/trunk/maven-invoker-plugin/src/site/apt/usage.apt.vm Wed Sep 12 18:04:38 2012
@@ -69,14 +69,10 @@ Usage
         <artifactId>maven-invoker-plugin</artifactId>
         <version>${project.version}</version>
         <configuration>
-          <projectsDirectory>src/it</projectsDirectory>
           <cloneProjectsTo>\${project.build.directory}/it</cloneProjectsTo>
-          <pomIncludes>
-            <pomInclude>*/pom.xml</pomInclude>
-          </pomIncludes>
           <settingsFile>src/it/settings.xml</settingsFile>
           <localRepositoryPath>\${project.build.directory}/local-repo</localRepositoryPath>
-          <postBuildHookScript>verify.bsh</postBuildHookScript>
+          <postBuildHookScript>verify</postBuildHookScript> <!-- no extension required -->
         </configuration>
         <executions>
           <execution>
@@ -124,7 +120,7 @@ Usage
   diagnostics in case an integration test fails.
 
   When an integration test has finished, the plugin will invoke an optional post build hook script. In the example,
-  this is the case for <<<second-it>>> where <<<verify.bsh>>> will be run. The purpose of this script is usally to
+  this is the case for <<<second-it>>> where <<<verify.bsh>>> will be run. The purpose of this script is usually to
   check that the build of the integration test did not only succeed but also produced the intended output. Have a look
   at the example {{{./examples/post-build-script.html}Using a Post Build Script}} for a code snippet.