Skip to content
This repository has been archived by the owner on Mar 24, 2022. It is now read-only.

Commit

Permalink
Add build script for easy inclusion into course zip files
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Gehard committed Oct 21, 2016
1 parent 6951e83 commit 045cb3b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions scripts/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/sh

set -e -x

if [ "$#" -ne 1 ]; then
echo "Please provide location to place build output."
exit 1;
fi

./mvnw package
cp target/articulate-0.0.1-SNAPSHOT.jar $1

0 comments on commit 045cb3b

Please sign in to comment.