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 2023/01/28 13:33:46 UTC

[maven-mvnd] branch master updated (8e92805e -> 0f8f67ae)

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 8e92805e Next is 1.0.0-m4-SNAPSHOT
     new 19dca434 Fix code style
     new 0f8f67ae Ignore tag

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:
 build/release-build.sh                                               | 2 +-
 client/src/main/java/org/mvndaemon/mvnd/client/DaemonParameters.java | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)


[maven-mvnd] 01/02: Fix code style

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 19dca434d1a1e692c7e592932522ec8f3a005094
Author: Guillaume Nodet <gn...@gmail.com>
AuthorDate: Sat Jan 28 14:33:26 2023 +0100

    Fix code style
---
 client/src/main/java/org/mvndaemon/mvnd/client/DaemonParameters.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/client/src/main/java/org/mvndaemon/mvnd/client/DaemonParameters.java b/client/src/main/java/org/mvndaemon/mvnd/client/DaemonParameters.java
index 639fe873..bd8061ea 100644
--- a/client/src/main/java/org/mvndaemon/mvnd/client/DaemonParameters.java
+++ b/client/src/main/java/org/mvndaemon/mvnd/client/DaemonParameters.java
@@ -122,7 +122,8 @@ public class DaemonParameters {
         if (Environment.isNative() && cmd.isPresent()) {
             final Path mvndH = Paths.get(cmd.get()).getParent().getParent();
             if (mvndH != null) {
-                Path mvndDaemon = Paths.get("mvnd-daemon-" + BuildProperties.getInstance().getVersion() + ".jar");
+                Path mvndDaemon =
+                        Paths.get("mvnd-daemon-" + BuildProperties.getInstance().getVersion() + ".jar");
                 if (Files.exists(mvndH.resolve("lib").resolve(mvndDaemon))
                         || Files.exists(mvndH.resolve("lib").resolve("ext").resolve(mvndDaemon))) {
                     return mvndH.toString();


[maven-mvnd] 02/02: Ignore tag

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 0f8f67ae5b2d15892137d586847e0d10b209c583
Author: Guillaume Nodet <gn...@gmail.com>
AuthorDate: Sat Jan 28 14:33:33 2023 +0100

    Ignore tag
---
 build/release-build.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build/release-build.sh b/build/release-build.sh
index a85a21f2..517cda33 100755
--- a/build/release-build.sh
+++ b/build/release-build.sh
@@ -116,7 +116,7 @@ mvn versions:set -DnewVersion=$VERSION
 # udpate changelog
 docker run -it --rm -v "$(pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator \
     --user apache --project maven-mvnd --token $GITHUB_TOKEN --future-release $VERSION \
-    --exclude-tags early-access,0.9.0,1.0.0-m2,build-1.0.0-m2
+    --exclude-tags early-access,0.9.0,1.0.0-m2,build-1.0.0-m2,1.0.0-m3
 
 # rebuild native libraries
 pushd native