Hello,
I have an ANT file using hibernate tool and the exporter hbmtemplate.
When executing my ant file, hibernate tools fails with the following error:
"org.hibernate.tool.hbm2x.ExporterException: Could not find template with name: build/templates/pojo/basepojo.ftl"
The task is declared as follow:
<property name="templates.dir" value="build/templates"/>
<hbmtemplate destdir="src"
template="${templates.dir}/pojo/basepojo.ftl"
filepattern="{package-name}/base/Base{class-name}.java"
/>
It was working well with an older version of the tool, using velocity. So I really don't understand what I m missing.
Thanks
|