Hi!
I have written a custom Ant task that I'd like to invoke from Maven.
The task has a nested element implemented as a addDtdParser(DTD dtd) method.
When I try to invoke the task from a Maven goal, the nested elements isn't
recognised, and therefore,
the addDtdParser() method is never executed.
I have even tried to put bogus sub elements under <xgg> like <bogus/>, but I
don't even get an error message.
The task itself executes (verified with som logging statements in
XggTask.execute().
Any clues?
<goal name="xdoclet:xgg">
<taskdef
name="xgg"
classname="xgg.ant.XggTask"
>
<classpath>
<pathelement
path="${maven.repo.local}/xgg/jars/xgg-1.0-alpha-dev.jar"/>
</classpath>
</taskdef>
<xgg>
<dtdParser/>
</xgg>
</goal>
Thanks,
Aslak
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>