Better use Parameter defaultValue to define default values
instead hard coding them.
Index: src/main/java/org/apache/maven/plugins/rar/RarMojo.java
===================================================================
--- src/main/java/org/apache/maven/plugins/rar/RarMojo.java	(revision 1729697)
+++ src/main/java/org/apache/maven/plugins/rar/RarMojo.java	(working copy)
@@ -78,8 +78,8 @@
      * Specify if the generated jar file of this project should be
      * included in the rar file ; default is true.
      */
-    @Parameter
-    private Boolean includeJar = Boolean.TRUE;
+    @Parameter( defaultValue = "true" )
+    private Boolean includeJar;
 
     /**
      * The location of the manifest file to be used within the rar file.


git-svn-id: https://svn.apache.org/repos/asf/maven/plugins/trunk@1729705 13f79535-47bb-0310-9956-ffa450edef68
1 file changed
tree: d407f053296aa1f53c28c50c629e103aae3cd5a2
  1. src/
  2. pom.xml