mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-10-31 17:25:58 +01:00
34 lines
895 B
Bash
Executable file
34 lines
895 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
set -u
|
|
set -o pipefail
|
|
|
|
|
|
while getopts d OPTION "$@"; do
|
|
case $OPTION in
|
|
d)
|
|
set -x
|
|
;;
|
|
esac
|
|
done
|
|
|
|
PROJECT_ROOT=$(dirname "${BASH_SOURCE[0]}")
|
|
cd "${PROJECT_ROOT}"
|
|
|
|
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
|
|
GRADLE_CLASSPATH="$(gradle :smack-repl:printClasspath --quiet |\
|
|
tail -n1)"
|
|
echo "Finished, starting REPL"
|
|
|
|
java \
|
|
-Dscala.usejavacp=true \
|
|
-classpath "${GRADLE_CLASSPATH}" \
|
|
ammonite.Main \
|
|
-f smack-repl/scala.repl
|