From 0b44883913f1d90e81c0e03e838ca9cd51a1caac Mon Sep 17 00:00:00 2001 From: essobedo Date: Thu, 17 Dec 2020 14:28:09 +0100 Subject: [PATCH] Ref #13950 - Fix the tip about how to suspend the JVM --- docs/src/main/asciidoc/maven-tooling.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/maven-tooling.adoc b/docs/src/main/asciidoc/maven-tooling.adoc index 6154d4adbd912..5bfa140be8116 100644 --- a/docs/src/main/asciidoc/maven-tooling.adoc +++ b/docs/src/main/asciidoc/maven-tooling.adoc @@ -254,7 +254,7 @@ An additional system property `suspend` can be used to suspend the JVM, when lau [TIP] ==== -You can also run a Quarkus application in debug mode with a suspended JVM using `./mvnw compile quarkus:dev -Ddebug` which is a shorthand for `./mvnw compile quarkus:dev -Ddebug=true`. +You can also run a Quarkus application in debug mode with a suspended JVM using `./mvnw compile quarkus:dev -Dsuspend` which is a shorthand for `./mvnw compile quarkus:dev -Dsuspend=true`. Then, attach your debugger to `localhost:5005`. ====