Skip to content

Commit

Permalink
build: disable tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentin-Guillemin committed Feb 5, 2024
1 parent 594a392 commit b65d461
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@

package () {
echo "--- Package ---"
./mvnw clean package -P prod
./mvnw clean package -P prod -Dmaven.test.skip=true -Darguments="-DskipTests"
}

snapshot () {
echo "--- Snapshot ---"
./mvnw clean package deploy -P prod
./mvnw clean package deploy -P prod -Dmaven.test.skip=true -Darguments="-DskipTests"
}

release () {
echo "--- Release ---"
./mvnw clean package release:prepare release:perform -P prod
./mvnw clean package release:prepare release:perform -P prod -Dmaven.test.skip=true -Darguments="-DskipTests"
}

echo "Collabsoft Building Tool"
Expand Down

0 comments on commit b65d461

Please sign in to comment.