Files
spring-tools/concourse/tasks/build-mvn-cache.sh
Kris De Volder a7670feb5d Fix 'build-mvn-cache' job.
There no longer any maven bits in vscode-extensions, so don't go
trying to run mvn there.
2017-04-07 15:45:12 -07:00

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