@echo off echo Xerces-Java Build System echo ------------------------ if "%JAVA_HOME%" == "" goto error rem Keep this classpath to the minimum required to run ant rem Application dependent classpaths are specified in build.xml set LOCALCLASSPATH=%JAVA_HOME%\lib\tools.jar;%JAVA_HOME%\lib\classes.zip;.\tools\ant.jar;.\tools\xercesImpl.jar;.\tools\xml-apis.jar;.\tools\bin\xjavac.jar echo Building with ant classpath %LOCALCLASSPATH% echo Starting Ant... "%JAVA_HOME%\bin\java.exe" -Dant.home="./tools" -classpath "%LOCALCLASSPATH%" org.apache.tools.ant.Main %1 %2 %3 %4 %5 goto end :error echo "ERROR: JAVA_HOME not found in your environment." echo "Please, set the JAVA_HOME variable in your environment to match the" echo "location of the Java Virtual Machine you want to use." :end set LOCALCLASSPATH= @echo on