14 lines
308 B
Bash
Executable File
14 lines
308 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
workdir=`pwd`
|
|
|
|
cd ${workdir}/sts4/headless-services
|
|
./mvnw -DskipTests package
|
|
|
|
cd ${workdir}/sts4/headless-services/jdt-ls-extension
|
|
../mvnw -DskipTests package
|
|
|
|
timestamp=`date +%s`
|
|
tarfile=${workdir}/out/sts4-mvn-cache-${timestamp}.tar.gz
|
|
tar -czvf ${tarfile} -C ${HOME} .m2/repository
|