blob: 63fb05610a9642e723eb8fe98acd8f7edc12e431 [file] [log] [blame]
@rem Schema compiler
@rem
@rem Builds XBean types from xsd files.
@echo off
setlocal
if "%XMLBEANS_HOME%" EQU "" (set XMLBEANS_HOME=%~dp0..)
set cp=
if EXIST %XMLBEANS_HOME%\build\ar\xbean.jar. (
set cp=%cp%;%XMLBEANS_HOME%\build\ar\xbean.jar.
) else if EXIST %XMLBEANS_HOME%\lib\xbean.jar. (
set cp=%cp%;%XMLBEANS_HOME%\lib\xbean.jar.
)
java -classpath %cp% org.apache.xmlbeans.impl.tool.SchemaCompiler %*
:done