Last active
December 18, 2015 11:39
-
-
Save jehrhardt/5777692 to your computer and use it in GitHub Desktop.
sbt start script to embed into a project. The script downloads the sbt launch JAR automatically, if not found.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
if [ -z "$SBT_VERSION" ] | |
then | |
SBT_VERSION=0.13.0 | |
fi | |
SBT_LAUNCH_JAR=$HOME/.sbt/sbt-launch-$SBT_VERSION.jar | |
mkdir -p $HOME/.sbt | |
if [ ! -r $SBT_LAUNCH_JAR ] | |
then | |
TYPESAFE_URL="http://repo.typesafe.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/$SBT_VERSION/sbt-launch.jar" | |
echo "Downloading sbt $SBT_VERSION from $TYPESAFE_URL" | |
wget -q -O "$SBT_LAUNCH_JAR" $TYPESAFE_URL | |
if [ ! -r $SBT_LAUNCH_JAR ] | |
then | |
echo "Unable to download file." | |
fi | |
fi | |
if test "$1" = "debug"; then | |
JAVA_DEBUG_PORT="9998" | |
shift | |
fi | |
if [ -z "${JAVA_DEBUG_PORT}" ]; then | |
DEBUG_PARAMETERS="" | |
else | |
DEBUG_PARAMETERS="-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=${JAVA_DEBUG_PORT}" | |
fi | |
java ${DEBUG_PARAMETERS} -Xms512M -Xmx1536M -Xss1M -XX:+CMSClassUnloadingEnabled -XX:MaxPermSize=384M -jar $SBT_LAUNCH_JAR "$@" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment