| #!/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.jaxb.JAXBClassGenerator ${JAVA_ARGS} |
| |
| . `dirname $0`/jaxb-compiler.sh ${JAVA_ARGS} |