From 47e15ae02fb337a8f578a3365bc2f5da599c78b2 Mon Sep 17 00:00:00 2001 From: Daniel Sabbagh Date: Tue, 15 Nov 2022 10:20:18 -0500 Subject: [PATCH] Fix formatting on table Just added a newline for the markdown to render correctly on the azure docs. --- docs-ref-services/preview/sdk-build-tool-readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs-ref-services/preview/sdk-build-tool-readme.md b/docs-ref-services/preview/sdk-build-tool-readme.md index ffcee50b125c3..c5aab411a73e7 100644 --- a/docs-ref-services/preview/sdk-build-tool-readme.md +++ b/docs-ref-services/preview/sdk-build-tool-readme.md @@ -47,6 +47,7 @@ Within the configuration section, it is possible to configure the settings in th | validateNoBetaAPIUsed | true | Azure SDK for Java client libraries sometimes do GA releases with methods annotated with @Beta. This check looks to see if any such methods are being used. | | validateLatestBomVersionUsed | true | Ensures that dependencies are kept up to date by reporting back (or failing the build) if a newer azure-sdk-for-java BOM exists. | | reportFile | "" | (Optional) Specifies the location to write the build report out to, in JSON format. If not specified, no report will be written (and a summary of the build, or the appropriate build failures), will be shown in the terminal. | + After adding the build tool into a Maven project, the tool can be run by calling `mvn compile azure:run`. Depending on the configuration provided, you can expect to see build failures or report files generated that can inform you about potential issues before they become more serious.