blob: 27cbeee7bdf5db80ef940479fa30bed7292b91a5 [file] [log] [blame]
#!/bin/sh
#Schema compiler
#Builds XBean types from xsd files.
cp=
if [ -e $XMLBEANS_HOME/build/ar/xbean.jar ]; then
cp=$cp:$XMLBEANS_HOME/build/ar/xbean.jar;
elif [ -e $XMLBEANS_HOME/lib/xbean.jar ]; then
cp=$cp:$XMLBEANS_HOME/lib/xbean.jar;
fi
case "`uname`" in
CYGWIN*)
cp=`cygpath -w -p $cp`
;;
esac
java -classpath $cp org.apache.xmlbeans.impl.tool.SchemaCompiler $*