I have a small build-valid.xml (from
http://www.xml.com/pub/a/2003/01/29/ant.html)
$ cat build-valid.xml
<?xml version="1.0"?>
<project default="valid">
<target name="valid">
<xmlvalidate file="date.xml"/>
</target>
</project>
and Ant from factory does not find xmlvalidate:
$ ant -f build-valid.xml
Buildfile: build-valid.xml
valid:
BUILD FAILED
/home/jochen_hayek/Computers/Software/Build_Management/XML_Pipelining_with_Ant/build-valid.xml:5:
Could not create task or type of type: xmlvalidate.
Ant could not find the task or a class this task relies upon.
This is common and has a number of causes; the usual
solutions are to read the manual pages then download and
install needed JAR files, or fix the build file:
[...]
Total time: 1 second
Looks sad, doesn't it?
And so am I.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]