You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2019/03/16 13:42:07 UTC

[maven-patch-plugin] 02/08: added java doc and since tag

This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-patch-plugin.git

commit 536980d7cc7f94aff09bd2e550373f8cdd2e8c0e
Author: Matthias Balke <ma...@googlemail.com>
AuthorDate: Mon Mar 5 21:20:27 2018 +0100

    added java doc and since tag
---
 src/main/java/org/apache/maven/plugin/patch/ApplyMojo.java | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/src/main/java/org/apache/maven/plugin/patch/ApplyMojo.java b/src/main/java/org/apache/maven/plugin/patch/ApplyMojo.java
index 83da555..1bfef97 100644
--- a/src/main/java/org/apache/maven/plugin/patch/ApplyMojo.java
+++ b/src/main/java/org/apache/maven/plugin/patch/ApplyMojo.java
@@ -237,6 +237,13 @@ public class ApplyMojo
     @Parameter( defaultValue = "false" )
     private boolean binary;
 
+    /**
+     * List of ANT-style exclude patterns separated by a comma. These patterns are used to exclude patch files found
+     * in the {@link ApplyMojo#patchDirectory}. These exclude patterns does not apply to a static defined list of
+     * {@link ApplyMojo#patches}.
+     *
+     * @since 1.3
+     */
     @Parameter
     private String excludePattern;