From a6702f5b8757662310880c0cd4098f7c7afc9077 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Tue, 3 Jun 2014 13:52:49 +0200 Subject: [PATCH] Remove reference of mvnDebug The maven plugin now forks a process to start the application so mvnDebug cannot be used anymore. This commit replaces the reference of mvnDebug to a link to an example of the maven plugin. Fixes gh-992 --- spring-boot-docs/src/main/asciidoc/howto.adoc | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/spring-boot-docs/src/main/asciidoc/howto.adoc b/spring-boot-docs/src/main/asciidoc/howto.adoc index 6108c14529..0e0957ae8b 100644 --- a/spring-boot-docs/src/main/asciidoc/howto.adoc +++ b/spring-boot-docs/src/main/asciidoc/howto.adoc @@ -1513,14 +1513,9 @@ details. [[howto-remote-debug-maven-run]] === Remote debug a Spring Boot application started with Maven To attach a remote debugger to a Spring Boot application started with Maven you can use -the `mvnDebug` command rather than `mvn`. For example: +the `jvmArguments` property of the {spring-boot-maven-plugin-site}/[maven plugin]. -[indent=0] ----- - $ mvnDebug spring-boot:run ----- - -You can now attach a remote debugger to your running application on port `8000`. +Check {spring-boot-maven-plugin-site}/examples/run-debug.html[this example] for more details.