You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by gn...@apache.org on 2022/04/26 11:22:11 UTC

[maven-mvnd] branch master updated (b90fbf1 -> 8b2d8dc)

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

gnodet pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/maven-mvnd.git


    from b90fbf1  Reapply Refactor build and release workflows #574 (#620)
     new dbe2fea  Fix missing space
     new 8b2d8dc  Upgrade to maven 3.8.5

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:
 .../src/test/java/org/mvndaemon/mvnd/junit/NativeTestClient.java        | 2 +-
 pom.xml                                                                 | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


[maven-mvnd] 01/02: Fix missing space

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

gnodet pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-mvnd.git

commit dbe2feaf0c829836bc5aac42568ad766a72fa556
Author: Guillaume Nodet <gn...@gmail.com>
AuthorDate: Mon Apr 11 13:34:52 2022 +0200

    Fix missing space
---
 .../src/test/java/org/mvndaemon/mvnd/junit/NativeTestClient.java        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/integration-tests/src/test/java/org/mvndaemon/mvnd/junit/NativeTestClient.java b/integration-tests/src/test/java/org/mvndaemon/mvnd/junit/NativeTestClient.java
index cbee27d..da098db 100644
--- a/integration-tests/src/test/java/org/mvndaemon/mvnd/junit/NativeTestClient.java
+++ b/integration-tests/src/test/java/org/mvndaemon/mvnd/junit/NativeTestClient.java
@@ -132,7 +132,7 @@ public class NativeTestClient implements Client {
         public Result assertSuccess() {
             if (exitCode != 0) {
                 final StringBuilder sb = ExecutionResult.appendCommand(
-                        new StringBuilder("mvnd returned ").append(exitCode),
+                        new StringBuilder("mvnd returned ").append(exitCode).append(", args: "),
                         args);
                 if (exitCode == CommandProcess.TIMEOUT_EXIT_CODE) {
                     sb.append(" (timeout)");


[maven-mvnd] 02/02: Upgrade to maven 3.8.5

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

gnodet pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-mvnd.git

commit 8b2d8dc1f24d2e26f3307ed5acd72083da6d5108
Author: Guillaume Nodet <gn...@gmail.com>
AuthorDate: Mon Apr 11 13:35:44 2022 +0200

    Upgrade to maven 3.8.5
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 16b2253..c7e3ba7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -56,7 +56,7 @@
         <jline.version>3.21.0</jline.version>
         <junit.jupiter.version>5.7.2</junit.jupiter.version>
         <logback.version>1.2.10</logback.version>
-        <maven.version>3.8.4</maven.version>
+        <maven.version>3.8.5</maven.version>
         <maven.resolver.version>1.7.3</maven.resolver.version>
         <slf4j.version>1.7.35</slf4j.version>