You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by se...@apache.org on 2013/08/06 01:09:47 UTC

svn commit: r1510798 - /maven/sandbox/trunk/plugins/maven-digest-plugin/src/main/java/org/apache/maven/plugins/digest/AbstractDigestMojo.java

Author: sebb
Date: Mon Aug  5 23:09:47 2013
New Revision: 1510798

URL: http://svn.apache.org/r1510798
Log:
Javadoc; drop unused shared property

Modified:
    maven/sandbox/trunk/plugins/maven-digest-plugin/src/main/java/org/apache/maven/plugins/digest/AbstractDigestMojo.java

Modified: maven/sandbox/trunk/plugins/maven-digest-plugin/src/main/java/org/apache/maven/plugins/digest/AbstractDigestMojo.java
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-digest-plugin/src/main/java/org/apache/maven/plugins/digest/AbstractDigestMojo.java?rev=1510798&r1=1510797&r2=1510798&view=diff
==============================================================================
--- maven/sandbox/trunk/plugins/maven-digest-plugin/src/main/java/org/apache/maven/plugins/digest/AbstractDigestMojo.java (original)
+++ maven/sandbox/trunk/plugins/maven-digest-plugin/src/main/java/org/apache/maven/plugins/digest/AbstractDigestMojo.java Mon Aug  5 23:09:47 2013
@@ -73,14 +73,14 @@ public abstract class AbstractDigestMojo
     private String files;
 
     /**
-     * List of digests (algorithms) to create, comma-separated (intended for command-line usage). Overrides algorithms;
-     * uses same syntax
+     * List of digests (algorithms) to create (or check), comma-separated (intended for command-line usage). 
+     * Overrides algorithms; uses same syntax
      */
     @Parameter( property = "maven.digest.digests" )
     private String digests;
 
     /**
-     * The list of algorithm names with which to create digests. If none specified, the default is {@code MD5} and
+     * The list of algorithm names with which to create (or check) digests. If none specified, the default is {@code MD5} and
      * {@code SHA1}. By default the file extension is assumed to be the algorithm name converted to lower-case, and any
      * "-" characters removed. The extension name can be provided by suffixing the algorithm name with ">" followed by
      * the extension, for example: "SHA-1>sha".
@@ -92,12 +92,6 @@ public abstract class AbstractDigestMojo
     // Mojo options
     // ----------------------------------------------------------------------
 
-    /**
-     * Whether to append ' *filename' to the hash in the generated file, default {@code false}
-     */
-    @Parameter( property = "maven.digest.appendFilename", defaultValue = "false" )
-    private boolean appendFilename;
-
     // ----------------------------------------------------------------------
     // Public methods
     // ----------------------------------------------------------------------