Skip to content

Commit

Permalink
remove --also-make from test and deploy steps
Browse files Browse the repository at this point in the history
add --also-make-dependents to test step
  • Loading branch information
SteVio89 committed Feb 18, 2022
1 parent bbb91d2 commit d83aa0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deploy-modules.sh
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ if [ -z "$PROJECTS" ]; then
exit 0
else
PROJECTS=${PROJECTS::-1}
DEPLOY_COMMAND=(mvn -s .circleci.settings.xml --projects "$PROJECTS" --also-make -DskipTests deploy)
DEPLOY_COMMAND=(mvn -s .circleci.settings.xml --projects "$PROJECTS" -DskipTests deploy)
fi
echo "${DEPLOY_COMMAND[@]}"
"${DEPLOY_COMMAND[@]}"
2 changes: 1 addition & 1 deletion test-modules.sh
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ else
exit 0
else
PROJECTS=${PROJECTS::-1}
TEST_COMMAND=(mvn clean --projects "$PROJECTS" --also-make -fae test)
TEST_COMMAND=(mvn clean --projects "$PROJECTS" -amd -fae test)
fi
fi
echo "${TEST_COMMAND[@]}"
Expand Down

0 comments on commit d83aa0b

Please sign in to comment.