You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2018/02/10 18:09:21 UTC

[maven-clean-plugin] branch MCLEAN-81 created (now 05512af)

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

khmarbaise pushed a change to branch MCLEAN-81
in repository https://gitbox.apache.org/repos/asf/maven-clean-plugin.git.


      at 05512af  [MCLEAN-81] - Upgrade parent to 31  o Fixed some checkstyle issues related to the upgrade.

This branch includes the following new commits:

     new 05512af  [MCLEAN-81] - Upgrade parent to 31  o Fixed some checkstyle issues related to the upgrade.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


-- 
To stop receiving notification emails like this one, please contact
khmarbaise@apache.org.

[maven-clean-plugin] 01/01: [MCLEAN-81] - Upgrade parent to 31 o Fixed some checkstyle issues related to the upgrade.

Posted by kh...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a commit to branch MCLEAN-81
in repository https://gitbox.apache.org/repos/asf/maven-clean-plugin.git

commit 05512afff435506feb74713742956b5d0cd4ab88
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Sat Feb 10 19:08:50 2018 +0100

    [MCLEAN-81] - Upgrade parent to 31
     o Fixed some checkstyle issues related to the upgrade.
---
 pom.xml                                                        | 2 +-
 src/main/java/org/apache/maven/plugins/clean/Cleaner.java      | 2 +-
 src/main/java/org/apache/maven/plugins/clean/GlobSelector.java | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index b65c618..82bf290 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,7 +25,7 @@ under the License.
   <parent>
     <groupId>org.apache.maven.plugins</groupId>
     <artifactId>maven-plugins</artifactId>
-    <version>30</version>
+    <version>31</version>
     <relativePath>../../pom/maven/maven-plugins/pom.xml</relativePath>
   </parent>
 
diff --git a/src/main/java/org/apache/maven/plugins/clean/Cleaner.java b/src/main/java/org/apache/maven/plugins/clean/Cleaner.java
index 2584d90..a15a221 100644
--- a/src/main/java/org/apache/maven/plugins/clean/Cleaner.java
+++ b/src/main/java/org/apache/maven/plugins/clean/Cleaner.java
@@ -50,7 +50,7 @@ class Cleaner
      * @param log The logger to use, may be <code>null</code> to disable logging.
      * @param verbose Whether to perform verbose logging.
      */
-    public Cleaner( final Log log, boolean verbose )
+    Cleaner( final Log log, boolean verbose )
     {
         logDebug = ( log == null || !log.isDebugEnabled() ) ? null : new Logger()
         {
diff --git a/src/main/java/org/apache/maven/plugins/clean/GlobSelector.java b/src/main/java/org/apache/maven/plugins/clean/GlobSelector.java
index 44d4604..ab791eb 100644
--- a/src/main/java/org/apache/maven/plugins/clean/GlobSelector.java
+++ b/src/main/java/org/apache/maven/plugins/clean/GlobSelector.java
@@ -41,12 +41,12 @@ class GlobSelector
 
     private final String str;
 
-    public GlobSelector( String[] includes, String[] excludes )
+    GlobSelector( String[] includes, String[] excludes )
     {
         this( includes, excludes, false );
     }
 
-    public GlobSelector( String[] includes, String[] excludes, boolean useDefaultExcludes )
+    GlobSelector( String[] includes, String[] excludes, boolean useDefaultExcludes )
     {
         this.str = "includes = " + toString( includes ) + ", excludes = " + toString( excludes );
         this.includes = normalizePatterns( includes );

-- 
To stop receiving notification emails like this one, please contact
khmarbaise@apache.org.