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:28 UTC

[maven-invoker-plugin] branch MINVOKER-232 updated (fb95fef -> df08c5a)

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

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


 discard fb95fef  [MINVOKER-232] - Upgrade parent to 31
     new df08c5a  [MINVOKER-232] - Upgrade parent to 31  o Removed checkstyle issues reported based on the    upgrade.

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (fb95fef)
            \
             N -- N -- N   refs/heads/MINVOKER-232 (df08c5a)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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.


Summary of changes:
 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 +-
 4 files changed, 8 insertions(+), 8 deletions(-)

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

[maven-invoker-plugin] 01/01: [MINVOKER-232] - Upgrade parent to 31 o Removed checkstyle issues reported based on 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 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.