Skip to content

Commit

Permalink
🔧 Stop Maven lifecycle at package.
Browse files Browse the repository at this point in the history
`install` installs the project to the local repository, which shouldn't be the default.
  • Loading branch information
warrenseine committed Jul 9, 2020
1 parent 3d45143 commit 003742b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ if [ ${BUILD_MACOS} -gt 0 ]; then
fi


mvn ${MAVEN_ARGS} -DskipTests clean install
mvn ${MAVEN_ARGS} -DskipTests clean package

if [ ${RUN_TEST} -gt 0 ]; then
mvn ${MAVEN_ARGS} surefire:test@utest
Expand Down

0 comments on commit 003742b

Please sign in to comment.