From 2d276801a4af2a6ca48f6da616ea8f4e4ed4bfc3 Mon Sep 17 00:00:00 2001 From: Guillaume Smet Date: Tue, 5 Sep 2023 19:21:21 +0200 Subject: [PATCH] Disable build scan for more utility commands --- integration-tests/gradle/update-dependencies.sh | 2 +- tcks/resteasy-reactive/update-dependencies.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/integration-tests/gradle/update-dependencies.sh b/integration-tests/gradle/update-dependencies.sh index 6a63d650cd77e..df05d02469de9 100755 --- a/integration-tests/gradle/update-dependencies.sh +++ b/integration-tests/gradle/update-dependencies.sh @@ -83,7 +83,7 @@ echo '' echo 'Sanity check...' echo '' # sanity check; make sure nothing stupid was added like non-existing deps -mvn dependency:resolve validate -Dsilent -q -f "${PRG_PATH}" $* +mvn -Dscan=false dependency:resolve validate -Dsilent -q -f "${PRG_PATH}" $* # CI only: verify that no pom.xml was touched (if changes are found, committer forgot to run script or to add changes) if [ "${CI:-}" == true ] && [ $(git status -s -u no '*pom.xml' | wc -l) -ne 0 ] diff --git a/tcks/resteasy-reactive/update-dependencies.sh b/tcks/resteasy-reactive/update-dependencies.sh index c138d2bc5e8a1..cdd12aab128b5 100755 --- a/tcks/resteasy-reactive/update-dependencies.sh +++ b/tcks/resteasy-reactive/update-dependencies.sh @@ -90,7 +90,7 @@ echo '' echo 'Sanity check...' echo '' # sanity check; make sure nothing stupid was added like non-existing deps -mvn dependency:resolve validate -Dsilent -q -f "${PRG_PATH}" $* +mvn -Dscan=false dependency:resolve validate -Dsilent -q -f "${PRG_PATH}" $* # CI only: verify that no pom.xml was touched (if changes are found, committer forgot to run script or to add changes) if [ "${CI:-}" == true ] && [ $(git status -s -u no '*pom.xml' | wc -l) -ne 0 ]