There no longer any maven bits in vscode-extensions, so don't go trying to run mvn there.
11 lines
225 B
Bash
Executable File
11 lines
225 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
workdir=`pwd`
|
|
|
|
cd ${workdir}/sts4/headless-services
|
|
./mvnw -DskipTests package
|
|
|
|
timestamp=`date +%s`
|
|
tarfile=${workdir}/out/sts4-mvn-cache-${timestamp}.tar.gz
|
|
tar -czvf ${tarfile} -C ${HOME} .m2/repository
|