${warp.home}/build.xml:169: Cannot find the Apache Xalan XSLT processor
The xalan.jar file is missing in ${ant.home}/lib.
Dowload it from xml.apache.org:
[user@host] ~ $
wget http://xml.apache.org/dist/xalan-j/xalan-j_2_3_1-bin.tar.gz
[user@host] ~ $
gzip -dc xalan-j_2_3_1-bin.tar.gz | tar xvf -
Xalan 2.3.1 was the lastest xalan version available when writting the
document.
tar must be a gnu tar. And it probably accept the option z.
Extract it and copy it in ${ant.home}/lib
[user@host] ~ $
cp ${xalan.home}/bin/xalan.jar ${ant.home}/lib
|