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 2008/09/18 23:36:00 UTC

svn commit: r696825 - /maven/plugins/trunk/maven-invoker-plugin/src/main/java/org/apache/maven/plugin/invoker/InvokerMojo.java

Author: bentmann
Date: Thu Sep 18 14:36:00 2008
New Revision: 696825

URL: http://svn.apache.org/viewvc?rev=696825&view=rev
Log:
[MINVOKER-7]

o Removed extension from default script filenames to enable interpreter detection by default

Modified:
    maven/plugins/trunk/maven-invoker-plugin/src/main/java/org/apache/maven/plugin/invoker/InvokerMojo.java

Modified: maven/plugins/trunk/maven-invoker-plugin/src/main/java/org/apache/maven/plugin/invoker/InvokerMojo.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-invoker-plugin/src/main/java/org/apache/maven/plugin/invoker/InvokerMojo.java?rev=696825&r1=696824&r2=696825&view=diff
==============================================================================
--- maven/plugins/trunk/maven-invoker-plugin/src/main/java/org/apache/maven/plugin/invoker/InvokerMojo.java (original)
+++ maven/plugins/trunk/maven-invoker-plugin/src/main/java/org/apache/maven/plugin/invoker/InvokerMojo.java Thu Sep 18 14:36:00 2008
@@ -220,7 +220,7 @@
      * exception, the corresponding build is flagged as a failure. In this case, neither Maven nor the post-build hook
      * script will be invoked.
      * 
-     * @parameter expression="${invoker.preBuildHookScript}" default-value="prebuild.bsh"
+     * @parameter expression="${invoker.preBuildHookScript}" default-value="prebuild"
      */
     private String preBuildHookScript;
 
@@ -231,7 +231,7 @@
      * If this script exists for a particular project but returns any value different from <code>true</code> or throws
      * an exception, the corresponding build is flagged as a failure.
      * 
-     * @parameter expression="${invoker.postBuildHookScript}" default-value="postbuild.bsh"
+     * @parameter expression="${invoker.postBuildHookScript}" default-value="postbuild"
      */
     private String postBuildHookScript;