blob: cb1a4e69fda9ef7de342a64fde0bc036ec87fdb8 [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.v200905221342.jar:\
`dirname $0`/../jlib/eclipselink.jar
JAVA_ARGS="$@"
${JAVA_HOME}/bin/java ${JVM_ARGS} -cp ${CLASSPATH} \
org.eclipse.persistence.sdo.helper.SDOClassGenerator ${JAVA_ARGS}