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/13 21:38:29 UTC

[maven-invoker-plugin] 01/01: [MINVOKER-232] - Upgrade parent to 31 o Removed checkstyle issues reported based on the upgrade.

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

khmarbaise pushed a commit to branch MINVOKER-232
in repository https://gitbox.apache.org/repos/asf/maven-invoker-plugin.git

commit df08c5ad8c3ff00595e53d5ce64d30405d03bfc8
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Tue Feb 13 19:52:11 2018 +0100

    [MINVOKER-232] - Upgrade parent to 31
     o Removed checkstyle issues reported based on the
       upgrade.
---
 pom.xml                                                             | 2 +-
 src/main/java/org/apache/maven/plugins/invoker/FileLogger.java      | 4 ++--
 .../java/org/apache/maven/plugins/invoker/InvokerProperties.java    | 6 +++---
 src/main/java/org/apache/maven/plugins/invoker/InvokerSession.java  | 4 ++--
 src/main/java/org/apache/maven/plugins/invoker/Selector.java        | 2 +-
 5 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/pom.xml b/pom.xml
index 67da083..f7654a3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,7 +25,7 @@ under the License.
   <parent>
     <artifactId>maven-plugins</artifactId>
     <groupId>org.apache.maven.plugins</groupId>
-    <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/invoker/FileLogger.java b/src/main/java/org/apache/maven/plugins/invoker/FileLogger.java
index 1073606..10d950f 100644
--- a/src/main/java/org/apache/maven/plugins/invoker/FileLogger.java
+++ b/src/main/java/org/apache/maven/plugins/invoker/FileLogger.java
@@ -40,7 +40,7 @@ class FileLogger
      * @param outputFile The path to the output file, must not be <code>null</code>.
      * @throws IOException If the output file could not be created.
      */
-    public FileLogger( File outputFile )
+    FileLogger( File outputFile )
         throws IOException
     {
         super( outputFile, null );
@@ -53,7 +53,7 @@ class FileLogger
      * @param log The mojo logger to additionally output messages to, may be <code>null</code> if not used.
      * @throws IOException If the output file could not be created.
      */
-    public FileLogger( File outputFile, Log log )
+    FileLogger( File outputFile, Log log )
         throws IOException
     {
         super( outputFile, log );
diff --git a/src/main/java/org/apache/maven/plugins/invoker/InvokerProperties.java b/src/main/java/org/apache/maven/plugins/invoker/InvokerProperties.java
index 6e1537f..3f5512e 100644
--- a/src/main/java/org/apache/maven/plugins/invoker/InvokerProperties.java
+++ b/src/main/java/org/apache/maven/plugins/invoker/InvokerProperties.java
@@ -53,7 +53,7 @@ class InvokerProperties
 
         private final String key;
 
-        private InvocationProperty( final String s )
+        InvocationProperty( final String s )
         {
             this.key = s;
         }
@@ -73,7 +73,7 @@ class InvokerProperties
         
         private final String suffix;
         
-        private SelectorProperty( String suffix )
+        SelectorProperty( String suffix )
         {
             this.suffix = suffix;
         }
@@ -96,7 +96,7 @@ class InvokerProperties
      *
      * @param properties The invoker properties to wrap, may be <code>null</code> if none.
      */
-    public InvokerProperties( Properties properties )
+    InvokerProperties( Properties properties )
     {
         this.properties = ( properties != null ) ? properties : new Properties();
     }
diff --git a/src/main/java/org/apache/maven/plugins/invoker/InvokerSession.java b/src/main/java/org/apache/maven/plugins/invoker/InvokerSession.java
index aa617da..0cf9ee3 100644
--- a/src/main/java/org/apache/maven/plugins/invoker/InvokerSession.java
+++ b/src/main/java/org/apache/maven/plugins/invoker/InvokerSession.java
@@ -50,7 +50,7 @@ class InvokerSession
     /**
      * Creates a new empty session.
      */
-    public InvokerSession()
+    InvokerSession()
     {
         buildJobs = new ArrayList<BuildJob>();
     }
@@ -60,7 +60,7 @@ class InvokerSession
      *
      * @param buildJobs The build jobs to set, must not be <code>null</code>.
      */
-    public InvokerSession( BuildJob[] buildJobs )
+    InvokerSession( BuildJob[] buildJobs )
     {
         this.buildJobs = new ArrayList<BuildJob>( Arrays.asList( buildJobs ) );
     }
diff --git a/src/main/java/org/apache/maven/plugins/invoker/Selector.java b/src/main/java/org/apache/maven/plugins/invoker/Selector.java
index d4fccc1..f1386d4 100644
--- a/src/main/java/org/apache/maven/plugins/invoker/Selector.java
+++ b/src/main/java/org/apache/maven/plugins/invoker/Selector.java
@@ -38,7 +38,7 @@ class Selector
     
     private final String actualJavaVersion;
     
-    public Selector( String actualMavenVersion, String actualJavaVersion )
+    Selector( String actualMavenVersion, String actualJavaVersion )
     {
         this.actualMavenVersion = actualMavenVersion;
         this.actualJavaVersion = actualJavaVersion;

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