Smack/repl

35 lines
895 B
Plaintext
Raw Normal View History

2016-02-10 14:09:13 +01:00
#!/usr/bin/env bash
set -e
set -u
set -o pipefail
2016-06-06 11:05:05 +02:00
2016-02-10 14:09:13 +01:00
while getopts d OPTION "$@"; do
case $OPTION in
d)
set -x
;;
esac
done
2016-06-06 11:05:05 +02:00
PROJECT_ROOT=$(dirname "${BASH_SOURCE[0]}")
cd "${PROJECT_ROOT}"
2016-02-10 14:09:13 +01:00
echo "Compiling and computing classpath (May take a while)"
# Sadly even with the --quiet option Gradle (or some component of)
# will print the number of warnings/errors to stdout if there are
# any. So the result could look like
# 52 warnings\n1 warning\n12 warnings\n
# /smack/smack-repl/build/classes/main:/smack/smack-repl/build/
# resources/main:/smack/smack-tcp/build/libs/smack-tcp-4.2.0-alpha4-SNAPSHOT.jar
# So perform a "tail -n1" on the output of gradle
2016-06-06 11:05:05 +02:00
GRADLE_CLASSPATH="$(gradle :smack-repl:printClasspath --quiet |\
2016-02-10 14:09:13 +01:00
tail -n1)"
echo "Finished, starting REPL"
java \
-Dscala.usejavacp=true \
-classpath "${GRADLE_CLASSPATH}" \
2016-12-08 08:29:36 +01:00
ammonite.Main \
-f smack-repl/scala.repl