blob: d5b62cf0e3257d4d74704a2e050ecdb480a0514f [file] [log] [blame]
@rem XSB file dumper
@rem
@rem Prints the contents of an xsb file in human-readable form
@echo off
setlocal
if "%XMLBEANS_HOME%" EQU "" (set XMLBEANS_HOME=%~dp0..)
set cp=
set cp=%cp%;%XMLBEANS_HOME%\build\ar\xbean.jar
java -classpath %cp% org.apache.xmlbeans.impl.tool.XsbDumper %*
:done