Hello Marcus, it's as Andrew expected: you have defined classpath outside a task element, where ant interprets it as a task ittself. Classpath can only be defined inside some task (like javac, java, javadoc...).
If you want to define classpath and use it several times, just replace your <classpath> with <path id="classpath"> and use references in further tasks. But in fact, I don't see where you're using classpath again... Why did you define classpath where you've defined it? Jens -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
