Skip to content

Commit

Permalink
Make the test script install jars
Browse files Browse the repository at this point in the history
- so that they are consumable by example and getting started projects locally
  • Loading branch information
Paul Warren committed Nov 6, 2019
1 parent 5225c50 commit 0d724d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ EOT
function test() {

if [[ -z "${1}" ]]; then
BUILD_TYPE=dev mvn clean test
BUILD_TYPE=dev mvn clean install
elif [[ "${1}" == "all" ]]; then
BUILD_TYPE=dev mvn clean test
BUILD_TYPE=dev mvn clean install
else
BUILD_TYPE=dev mvn -pl "spring-content-${1}" -am clean test
BUILD_TYPE=dev mvn -pl "spring-content-${1}" -am clean install
fi

}
Expand Down

0 comments on commit 0d724d4

Please sign in to comment.