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

15 lines
253 B
Bash
Raw Normal View History

2022-11-03 20:41:13 +00:00
#!/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