Skip to content

Commit 6e862d0

Browse files
committed
Make sure we use the Maven wrapper everywhere
1 parent c5ffe30 commit 6e862d0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

integration-tests/gradle/update-dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ echo ''
8787
echo 'Sanity check...'
8888
echo ''
8989
# sanity check; make sure nothing stupid was added like non-existing deps
90-
mvn -Dscan=false dependency:resolve validate -Dsilent -q -f "${PRG_PATH}" $*
90+
${PRG_PATH}/../../mvnw -Dscan=false dependency:resolve validate -Dsilent -q -f "${PRG_PATH}" $*
9191

9292
# CI only: verify that no pom.xml was touched (if changes are found, committer forgot to run script or to add changes)
9393
if [ "${CI:-}" == true ] && [ $(git status -s -u no '*pom.xml' | wc -l) -ne 0 ]

tcks/resteasy-reactive/update-dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ echo ''
9090
echo 'Sanity check...'
9191
echo ''
9292
# sanity check; make sure nothing stupid was added like non-existing deps
93-
mvn -Dscan=false dependency:resolve validate -Dsilent -q -f "${PRG_PATH}" $*
93+
${PRG_PATH}/../../mvnw -Dscan=false dependency:resolve validate -Dsilent -q -f "${PRG_PATH}" $*
9494

9595
# CI only: verify that no pom.xml was touched (if changes are found, committer forgot to run script or to add changes)
9696
if [ "${CI:-}" == true ] && [ $(git status -s -u no '*pom.xml' | wc -l) -ne 0 ]

update-extension-dependencies.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ then
1414
echo ''
1515
echo 'Building bom-descriptor-json...'
1616
echo ''
17-
mvn -q -e -Dscan=false clean package -f "${PRG_PATH}/devtools/bom-descriptor-json" -Denforcer.skip $*
17+
./mvnw -q -e -Dscan=false clean package -f "${PRG_PATH}/devtools/bom-descriptor-json" -Denforcer.skip $*
1818
else
1919
read -n1 -p 'Build the entire project with relocations? [y/n] ' ANSWER
2020
echo ''
@@ -23,7 +23,7 @@ else
2323
echo ''
2424
echo 'Building entire project with relocations...'
2525
echo ''
26-
mvn -q -e -Dscan=false -Dquickly -Dno-test-modules -Prelocations -T0.8C -f "${PRG_PATH}" $*
26+
./mvnw -q -e -Dscan=false -Dquickly -Dno-test-modules -Prelocations -T0.8C -f "${PRG_PATH}" $*
2727
else
2828
echo ''
2929
echo 'Aborted!'
@@ -112,7 +112,7 @@ echo ''
112112
echo 'Sanity check...'
113113
echo ''
114114
# sanity check; make sure nothing stupid was added like non-existing deps
115-
mvn -Dscan=false dependency:resolve validate -Dsilent -q -f "${PRG_PATH}" -pl devtools/bom-descriptor-json,docs $*
115+
./mvnw -Dscan=false dependency:resolve validate -Dsilent -q -f "${PRG_PATH}" -pl devtools/bom-descriptor-json,docs $*
116116

117117
# CI only: verify that no pom.xml was touched (if changes are found, committer forgot to run script or to add changes)
118118
if [ "${CI:-}" == true ] && [ $(git status -s -u no '*pom.xml' | wc -l) -ne 0 ]

0 commit comments

Comments
 (0)