From d8892b17e94ff35856004668c404382f6fe98f1b 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. --- 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 ba5bb9eacc7f1..5e94572377052 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]]