it not solve my problem, my new build.xml.
<target name="init2">
<property name="xdoclet2.dir"
value="C:\\Tools\\xdoclet2-1.0.1" />
<path id="xdoclet.task.classpath">
<fileset dir="${xdoclet2.dir}/lib">
<include name="*.jar" />
</fileset>
<fileset dir="${xdoclet2.dir}/plugins">
<include name="*.jar" />
</fileset>
</path>
<taskdef name="xdoclet"
classname="org.xdoclet.ant.XDocletTask"
classpathref="xdoclet.task.classpath" />
</target>
<target name="generate_hibernate2" depends="init2">
<xdoclet>
<!-- defines the file handled by xdoclet2 -->
<fileset dir="../../source">
<include name="**/*.java" />
</fileset>
<!-- defines the processing of a plugin -->
<component
classname="org.generama.VelocityTemplateEngine" />
<component
classname="org.generama.JellyTemplateEngine" />
<component
classname="org.xdoclet.plugin.hibernate.HibernateMappingPlugin"
destdir="../../source" />
</xdoclet>
</target>
> It seems that you are missing template engines:
>
> <component
> classname="org.generama.VelocityTemplateEngine"/>
> <component
> classname="org.generama.JellyTemplateEngine"/>
>
> They are necessary for plugins to execute.
>
>
> regards,
>
> ----[ Konstantin Pribluda ( ko5tik ) ]----------------
> ... Auf der Suche nach einen Projekt in Rhein-Main
> ab 18.4.2005
> ----[ http://www.pribluda.de ]------------------------
>
>
>
> __________________________________
> Yahoo! Mail
> Stay connected, organized, and protected. Take the tour:
> http://tour.mail.yahoo.com/mailtour.html
>
>
>
--