blob: db17021e8f2e9f4356601e8d4fde59a54d5fce36 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# This is in script like this to also ensure reproducibility.
# If you don't care about that, just ./mvnw install is enough :)
set -eu
./mvnw dependency:go-offline install
rm -fr ${M2_REPO:-~/.m2/repository}/lv/enes/
./mvnw -o clean
./mvnw -o install
|