blob: 4c737c571af78b6ce74a5c0bb79d190d2f552a68 [file] [log] [blame]
#!/bin/sh
## Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0
ROOT="$JENAROOT"
if [ -z "$ROOT" ]
then
ROOT="$ARQROOT"
fi
if [ -z "$ROOT" ]
then
echo "JENAROOT not set" 1>&2
exit 1
fi
# ---- Setup
JVM_ARGS=${JVM_ARGS:--Xmx1024M}
# Expand JENAROOT but literal *
JENA_CP="$JENAROOT"'/lib/*'
SOCKS=
LOGGING="-Dlog4j.configuration=file:$JENAROOT/jena-log4j.properties"
java $JVM_ARGS $LOGGING -cp "$JENA_CP" JENA_CMD "$@"