Skip to content

Instantly share code, notes, and snippets.

@lorenzop
Created April 21, 2017 06:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lorenzop/d0c57e2f65f97fdfb676d556ed555cbe to your computer and use it in GitHub Desktop.
Save lorenzop/d0c57e2f65f97fdfb676d556ed555cbe to your computer and use it in GitHub Desktop.
#!/bin/bash
clear
# build pxnCommon
pushd pxnCommon/ || exit 1
\mvn install || exit 1
popd
echo
# build server
pushd GrowControl/server/ || exit 1
\mvn install || exit 1
popd
echo
# run server
echo "Running.."
sleep 1
clear
pushd GrowControl/server/target/ >/dev/null || exit 1
\java -jar gcServer-3.6.1.jar $@
popd >/dev/null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment