blob: 52ae44a416a5cd1e27ffcef5906d87a952e54b31 (
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/repository/lv/enes/
./mvnw -o clean
./mvnw -o install
|