mirror of
https://github.com/IRS-Public/direct-file.git
synced 2025-08-13 08:20:52 +00:00
15 lines
No EOL
404 B
Bash
Executable file
15 lines
No EOL
404 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
# ----------------------------------------------------------------------------
|
|
# This script will build the project.
|
|
#
|
|
# It expects to be run from a repo that contains the `mvnw` script.
|
|
#
|
|
# ----------------------------------------------------------------------------
|
|
|
|
set -e
|
|
|
|
../scripts/build-dependencies.sh
|
|
|
|
echo 'cleaning, compiling and packaging /'$(pwd)'...'
|
|
./mvnw clean package |