druid/build.sh

18 lines
383 B
Bash
Raw Normal View History

2014-11-24 14:15:14 -05:00
#!/bin/bash -eu
2012-10-24 03:39:51 -04:00
2014-11-24 14:15:14 -05:00
BASE=$(cd $(dirname $0) && pwd)
2012-10-24 03:39:51 -04:00
2014-11-24 14:15:14 -05:00
VERSION=`cat pom.xml | grep '<version>' | head -1 | tail -1 | sed 's_.*<version>\([^<]*\)</version>.*_\1_'`
2012-10-24 03:39:51 -04:00
2014-11-24 14:15:14 -05:00
echo "Building Version [${VERSION}]"
2012-10-24 03:39:51 -04:00
2014-11-24 14:15:14 -05:00
mvn -U -B clean package
2012-10-24 03:39:51 -04:00
2014-11-24 14:15:14 -05:00
JARS=$(find "$BASE" -name "*-$VERSION-selfcontained.jar" | sed -e 's/^/ /')
2012-10-24 03:39:51 -04:00
2014-11-24 14:15:14 -05:00
cat <<EOF
2012-10-24 03:39:51 -04:00
2014-11-24 14:15:14 -05:00
The following self-contained jars (and more) have been built:
$JARS
EOF