You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by pg...@apache.org on 2012/10/20 16:56:13 UTC

svn commit: r1400467 - /maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/PurgeLocalRepositoryMojo.java

Author: pgier
Date: Sat Oct 20 14:56:13 2012
New Revision: 1400467

URL: http://svn.apache.org/viewvc?rev=1400467&view=rev
Log:
[MDEP-385] Change default fuzziness to "version" instead of "file"

Modified:
    maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/PurgeLocalRepositoryMojo.java

Modified: maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/PurgeLocalRepositoryMojo.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/PurgeLocalRepositoryMojo.java?rev=1400467&r1=1400466&r2=1400467&view=diff
==============================================================================
--- maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/PurgeLocalRepositoryMojo.java (original)
+++ maven/plugins/trunk/maven-dependency-plugin/src/main/java/org/apache/maven/plugin/dependency/PurgeLocalRepositoryMojo.java Sat Oct 20 14:56:13 2012
@@ -180,16 +180,16 @@ public class PurgeLocalRepositoryMojo
      * Determines how liberally the plugin will delete an artifact from the
      * local repository. Values are: <br/>
      * <ul>
-     * <li><b>file</b> <i>(default)</i> - Eliminate only the artifact's file.</li>
-     * <li><b>version</b> - Eliminate all files associated with the artifact's
-     * version.</li>
+     * <li><b>file</b> - Eliminate only the artifact's file.</li>
+     * <li><b>version</b> <i>(default)</i> - Eliminate all files associated 
+     * with the version of the artifact.</li>
      * <li><b>artifactId</b> - Eliminate all files associated with the
      * artifact's artifactId.</li>
      * <li><b>groupId</b> - Eliminate all files associated with the artifact's
      * groupId.</li>
      * </ul>
      */
-    @Parameter( property = "resolutionFuzziness", defaultValue = "file" )
+    @Parameter( property = "resolutionFuzziness", defaultValue = "version" )
     private String resolutionFuzziness;
 
     /**