blob: 8205b9e86bef797ecedd6661d72fc3f7bb71eced [file] [log] [blame]
@rem Instance Validator
@rem
@rem Validates an instance against a schema.
@echo off
setlocal
if "%XMLBEANS_HOME%" EQU "" (set XMLBEANS_HOME=%~dp0..)
set cp=
set cp=%cp%;%XMLBEANS_HOME%\build\ar\xbean.jar
set cp=%cp%;%XMLBEANS_HOME%\build\lib\jsr173_api.jar
java -classpath %cp% org.apache.xmlbeans.impl.tool.InstanceValidator %*
:done