You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sl...@apache.org on 2020/06/06 09:14:26 UTC

[maven-invoker-plugin] branch MINVOKER-264 updated (f8ae8d9 -> 3e7a88f)

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

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


 discard f8ae8d9  [MINVOKER-264] Reduce the number of errors when generating the site
     new d080558  Fix checkstyle errors
     new 3e7a88f  [MINVOKER-264] Reduce the number of errors when generating the site

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   (f8ae8d9)
            \
             N -- N -- N   refs/heads/MINVOKER-264 (3e7a88f)

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 2 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:
 .../apache/maven/plugins/invoker/InvokerPropertiesTest.java  | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)


[maven-invoker-plugin] 02/02: [MINVOKER-264] Reduce the number of errors when generating the site

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

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

commit 3e7a88fa87d507df5dc6bdca168271385ceb36ee
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Fri Jun 5 21:13:47 2020 +0200

    [MINVOKER-264] Reduce the number of errors when generating the site
---
 pom.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/pom.xml b/pom.xml
index 959bcbd..526fadf 100644
--- a/pom.xml
+++ b/pom.xml
@@ -269,6 +269,10 @@ under the License.
             <includeTestSourceDirectory>true</includeTestSourceDirectory>
           </configuration>
         </plugin>
+        <plugin>
+          <artifactId>maven-project-info-reports-plugin</artifactId>
+          <version>3.1.0</version>
+        </plugin>
       </plugins>
     </pluginManagement>
 


[maven-invoker-plugin] 01/02: Fix checkstyle errors

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

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

commit d08055843c02488340e96f7894f4376dc2548687
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Sat Jun 6 11:13:10 2020 +0200

    Fix checkstyle errors
---
 .../apache/maven/plugins/invoker/InvokerPropertiesTest.java  | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/src/test/java/org/apache/maven/plugins/invoker/InvokerPropertiesTest.java b/src/test/java/org/apache/maven/plugins/invoker/InvokerPropertiesTest.java
index fe9349c..784a7f4 100644
--- a/src/test/java/org/apache/maven/plugins/invoker/InvokerPropertiesTest.java
+++ b/src/test/java/org/apache/maven/plugins/invoker/InvokerPropertiesTest.java
@@ -373,7 +373,6 @@ public class InvokerPropertiesTest
     @Test
     public void testGetToolchains()
     {
-
         Properties props = new Properties();
         props.put( "invoker.toolchain.jdk.version", "11" );
         InvokerProperties facade = new InvokerProperties( props );
@@ -382,24 +381,23 @@ public class InvokerPropertiesTest
         assertNotNull( toolchains );
         assertEquals( 1, toolchains.size() );
         InvokerToolchain toolchain = toolchains.iterator().next();
-        assertEquals( "jdk", toolchain.getType());
-        assertEquals( Collections.singletonMap( "version", "11" ), toolchain.getProvides());
+        assertEquals( "jdk", toolchain.getType() );
+        assertEquals( Collections.singletonMap( "version", "11" ), toolchain.getProvides() );
     }
 
     @Test
     public void testGetToolchainsWithIndex()
     {
-
         Properties props = new Properties();
         props.put( "selector.1.invoker.toolchain.jdk.version", "11" );
         InvokerProperties facade = new InvokerProperties( props );
 
-        Collection<InvokerToolchain> toolchains = facade.getToolchains(1);
+        Collection<InvokerToolchain> toolchains = facade.getToolchains( 1 );
         assertNotNull( toolchains );
         assertEquals( 1, toolchains.size() );
         InvokerToolchain toolchain = toolchains.iterator().next();
-        assertEquals( "jdk", toolchain.getType());
-        assertEquals( Collections.singletonMap( "version", "11" ), toolchain.getProvides());
+        assertEquals( "jdk", toolchain.getType() );
+        assertEquals( Collections.singletonMap( "version", "11" ), toolchain.getProvides() );
     }
 
 }