From fc6b783a492d5b04694d135440cd4f184d9502f1 Mon Sep 17 00:00:00 2001 From: Guillaume Smet Date: Thu, 24 Aug 2023 12:46:55 +0200 Subject: [PATCH] Update doc regarding quarkus.builder.graph-output It was renamed in https://github.com/quarkusio/quarkus/pull/35299 but we forgot to update the documentation. (cherry picked from commit d8892b17e94ff35856004668c404382f6fe98f1b) --- docs/src/main/asciidoc/writing-extensions.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/writing-extensions.adoc b/docs/src/main/asciidoc/writing-extensions.adoc index f185a27b431d3..5f558e6b7400f 100644 --- a/docs/src/main/asciidoc/writing-extensions.adoc +++ b/docs/src/main/asciidoc/writing-extensions.adoc @@ -1045,7 +1045,7 @@ and add them to the reflective hierarchy for `BUILD_TIME` analysis. ==== Visualizing build step dependencies -It can occasionally be useful to see a visual representation of the interactions between the various build steps. For such cases, adding `-Djboss.builder.graph-output=build.dot` when building an application +It can occasionally be useful to see a visual representation of the interactions between the various build steps. For such cases, adding `-Dquarkus.builder.graph-output=build.dot` when building an application will result in the creation of the `build.dot` file in the project's root directory. See link:https://graphviz.org/resources/[this] for a list of software that can open the file and show the actual visual representation. [[configuration]]