xmltask confused about dtd
I'm trying to use xmltask for ant to modify a file in a subdirectory: project/path/to/file.xml The file refers to a DTD like this: <!DOCTYPE data SYSTEM "mydtd.dtd"> I don't have the flexibility to change these documents. This DTD is stored in the same subdirectory, which has always worked fine: project/path/to/mydtd.dtd Unfortunately, xmltask is trying to locate the dtd in my project's top-level directory, which is where my build file is located, and where I run from: [xmltask] java.io.FileNotFoundException: /home/me/project/mydtd.dtd (The system cannot find the file specified) I see in the