[maven-invoker-plugin] 01/01: [MINVOKER-232] - Upgrade parent to 31

2018-02-13 Thread khmarbaise
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 fb95fef99f22b409ddf98679b72a07c86b5fac5e
Author: Karl Heinz Marbaise 
AuthorDate: Tue Feb 13 19:52:11 2018 +0100

[MINVOKER-232] - Upgrade parent to 31
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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.
   
 maven-plugins
 org.apache.maven.plugins
-30
+31
 ../../pom/maven/maven-plugins/pom.xml
   
 

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


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

2018-02-13 Thread khmarbaise
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 
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.
   
 maven-plugins
 org.apache.maven.plugins
-30
+31
 ../../pom/maven/maven-plugins/pom.xml
   
 
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 
null.
  * @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 
null 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 
null 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();
 }
@@ -60,7 +60,7 @@ class InvokerSession
  *
  * @param buildJobs The build jobs to set, must not be null.
  */
-public InvokerSession( BuildJob[] buildJobs )
+InvokerSession( BuildJob[] buildJobs )
 {
 this.buildJobs = new ArrayList( 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
khmarba...@apache.org.