blob: 931d6c2b0b06914d5fe2644dcf925e6b6f5bd6c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
@echo off
echo Fop Test
echo ----------------
if "%JAVA_HOME%" == "" goto error
set CLASSPATH=c:\jars\bsf.jar;c:\jars\bsfengines.jar;c:\jars\xerces112.jar;c:\jars\xalan11.jar;
set LOCALCLASSPATH=%JAVA_HOME%\lib\tools.jar;%JAVA_HOME%\lib\classes.zip;..\..\lib\ant.jar;..\..\lib\xml.jar;..\..\lib;..\..\lib\w3c.jar;..\..\build\fop.jar
set ANT_HOME=..\..\lib
echo Starting Tests ...
%JAVA_HOME%\bin\java.exe -Dant.home=%ANT_HOME% -classpath %LOCALCLASSPATH%;%CLASSPATH% 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
rem set LOCALCLASSPATH=
|