REPL: Add support to enable a JDWP debug link

This commit is contained in:
Florian Schmaus 2017-10-14 13:38:24 +02:00
parent 01aa6d9c18
commit e1e12031ac
1 changed files with 16 additions and 2 deletions

18
repl
View File

@ -3,15 +3,29 @@ set -e
set -u
set -o pipefail
JDWP=false
JDWP_PORT=8000
while getopts d OPTION "$@"; do
while getopts djp: OPTION "$@"; do
case $OPTION in
d)
set -x
;;
j)
JDWP=true
;;
p)
JDWP_PORT=$OPTARG
;;
esac
done
EXTRA_JAVA_ARGS=()
if $JDWP; then
EXTRA_JAVA_ARGS+=("-Xdebug")
EXTRA_JAVA_ARGS+=("-Xrunjdwp:server=y,transport=dt_socket,address=${JDWP_PORT},suspend=n")
fi
PROJECT_ROOT=$(dirname "${BASH_SOURCE[0]}")
cd "${PROJECT_ROOT}"
@ -27,7 +41,7 @@ GRADLE_CLASSPATH="$(gradle :smack-repl:printClasspath --quiet |\
tail -n1)"
echo "Finished, starting REPL"
java \
java "${EXTRA_JAVA_ARGS[@]}" \
-Dscala.usejavacp=true \
-classpath "${GRADLE_CLASSPATH}" \
ammonite.Main \