13 lines
276 B

11 months ago
  1. #!/bin/bash
  2. # Exit script on any error
  3. set -e
  4. # Echo commands to the terminal
  5. set -x
  6. echo "Building the project and running tests..."
  7. # Clean the project, compile sources, run tests, and package the project
  8. mvn clean install
  9. echo "Build and test processes are completed."