blob: c842448d96b5abb1c4b902c99404ee2d17a96e1d [file] [log] [blame]
#!/bin/sh
. `dirname $0`/setenv.sh
# User may increase Java memory setting(s) if desired:
JVM_ARGS=-Xmx256m
# If going through a proxy, set the proxy host and proxy port below, then uncomment the line
# JVM_ARGS="${JVM_ARGS} -DproxySet=true -Dhttp.proxyHost= -Dhttp.proxyPort="
# Please do not change any of the following lines:
CLASSPATH=`dirname $0`/../jlib/sdo/commonj.sdo_2.1.1.v201112051852.jar:\
`dirname $0`/../jlib/eclipselink.jar
JAVA_ARGS="$@"
${JAVA_HOME}/bin/java ${JVM_ARGS} -cp ${CLASSPATH} \
org.eclipse.persistence.sdo.helper.SDOClassGenerator ${JAVA_ARGS}