components/grails/files/grails-debug
author Misaki Miyashita <Misaki.Miyashita@Oracle.COM>
Tue, 19 Aug 2014 06:46:13 -0700
branchs11u2-sru
changeset 3280 68da1d34daee
parent 413 1a6d7a739179
permissions -rw-r--r--
19314980 Update the OpenSSL FIPS-140 module version to 2.0.6

#!/bin/sh

if [ -z "$GRAILS_HOME" ]; then
    echo "Please set GRAILS_HOME environment variable to location, where Grails is installed." 1>&2
    echo "(Default location is /usr/grails/[version], e.g. /usr/grails/1.0.3)" 1>&2
    exit 1
fi

if [ ! -f "$GRAILS_HOME/bin/startGrails" ]; then
    echo "GRAILS_HOME is not set properly: $GRAILS_HOME" 1>&2
    echo "It must contain path to the directory where Grails is installed!" 1>&2
    exit 1
fi

. "$GRAILS_HOME/bin/startGrails"

JAVA_OPTS="-Xdebug -Xnoagent -Dgrails.full.stacktrace=true -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005"

startGrails org.codehaus.groovy.grails.cli.GrailsScriptRunner "$@"