This repository has been archived on 2022-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
DevOpsOpenHack/apis/user-java/buildtest.sh
2022-11-03 16:41:13 -04:00

15 lines
253 B
Bash

#!/bin/bash
# https://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html
# clean the output of the previous build
mvn clean
# run unit tests
mvn test
# create distributable package
mvn package
# run integration tests
mvn verify