You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2013/06/30 14:59:44 UTC

svn commit: r1498109 - /maven/plugins/trunk/maven-war-plugin/src/main/java/org/apache/maven/plugin/war/AbstractWarMojo.java

Author: olamy
Date: Sun Jun 30 12:59:44 2013
New Revision: 1498109

URL: http://svn.apache.org/r1498109
Log:
oups fix default value

Modified:
    maven/plugins/trunk/maven-war-plugin/src/main/java/org/apache/maven/plugin/war/AbstractWarMojo.java

Modified: maven/plugins/trunk/maven-war-plugin/src/main/java/org/apache/maven/plugin/war/AbstractWarMojo.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-war-plugin/src/main/java/org/apache/maven/plugin/war/AbstractWarMojo.java?rev=1498109&r1=1498108&r2=1498109&view=diff
==============================================================================
--- maven/plugins/trunk/maven-war-plugin/src/main/java/org/apache/maven/plugin/war/AbstractWarMojo.java (original)
+++ maven/plugins/trunk/maven-war-plugin/src/main/java/org/apache/maven/plugin/war/AbstractWarMojo.java Sun Jun 30 12:59:44 2013
@@ -326,7 +326,7 @@ public abstract class AbstractWarMojo
      * use jvmChmod rather that cli chmod and forking process
      * @since 2.4
      */
-    @Parameter(property = "maven.war.useJvmChmod", defaultValue = "useJvmChmod" )
+    @Parameter(property = "maven.war.useJvmChmod", defaultValue = "true" )
     private boolean useJvmChmod;