You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2021/05/02 15:26:45 UTC

[maven] 01/02: [MNG-7090] mvnDebug does not work on Java 11+ Submitted by: Guillaume Dufour

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

michaelo pushed a commit to branch MNG-7149
in repository https://gitbox.apache.org/repos/asf/maven.git

commit 32cdc2ec3cf265873b23790ab1eefa98efff59a8
Author: Guillaume Dufour <gu...@gmail.com>
AuthorDate: Sun Apr 25 18:35:47 2021 +0200

    [MNG-7090] mvnDebug does not work on Java 11+
    Submitted by: Guillaume Dufour
    
    mvnDebug socket binds on 0.0.0.0
---
 apache-maven/src/assembly/shared/mvnwDebug     | 2 +-
 apache-maven/src/assembly/shared/mvnwDebug.cmd | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/apache-maven/src/assembly/shared/mvnwDebug b/apache-maven/src/assembly/shared/mvnwDebug
index d67dc0d..4a4089a 100644
--- a/apache-maven/src/assembly/shared/mvnwDebug
+++ b/apache-maven/src/assembly/shared/mvnwDebug
@@ -27,7 +27,7 @@
 #   MAVEN_SKIP_RC   (Optional) Flag to disable loading of mavenrc files.
 # -----------------------------------------------------------------------------
 
-MAVEN_DEBUG_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000"
+MAVEN_DEBUG_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=0.0.0.0:8000"
 
 echo Preparing to execute Maven Wrapper in debug mode
 
diff --git a/apache-maven/src/assembly/shared/mvnwDebug.cmd b/apache-maven/src/assembly/shared/mvnwDebug.cmd
index 2c4face..e3ad7c9 100644
--- a/apache-maven/src/assembly/shared/mvnwDebug.cmd
+++ b/apache-maven/src/assembly/shared/mvnwDebug.cmd
@@ -28,6 +28,6 @@
 @REM -----------------------------------------------------------------------------
 
 @setlocal
-@set MAVEN_DEBUG_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
+@set MAVEN_DEBUG_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=0.0.0.0:8000
 
 @call "%~dp0"mvnw.cmd %*