5c3ea7e43f
It should contain all and only the jars in lib/endorsed. git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352385 13f79535-47bb-0310-9956-ffa450edef68
13 lines
310 B
Batchfile
Executable File
13 lines
310 B
Batchfile
Executable File
@echo off
|
|
|
|
set OLD_ANT_HOME=%ANT_HOME%
|
|
set ANT_HOME=tools\antipede
|
|
|
|
set OLD_CLASSPATH=%CLASSPATH%
|
|
for %%i in (.\lib\endorsed\*.jar) do call appendcp.bat %%i
|
|
|
|
echo Using classpath: "%CLASSPATH%"
|
|
call %ANT_HOME%\bin\ant -emacs %1 %2 %3 %4 %5 %6 %7 %8 %9
|
|
|
|
set ANT_HOME=%OLD_ANT_HOME%
|
|
set CLASSPATH=%OLD_CLASSPATH% |