In the 2.1 tools you were able to specify a config file as an attribute of the hbm2java task:
<hbm2java output="${gen.dir}" config="
hbm2config.xml">
<fileset dir="${persist.dir}">
<include name="**/*.hbm.xml"/>
</fileset>
</hbm2java>
In this config file I was able to specify things like implements meta tags, etc.:
<codegen>
<meta attribute="implements">com.plumtree.hiper.hibernate.persist.IPTObjectModification</meta>
<meta attribute="implement-equals">true</meta>
<generate renderer="net.sf.hibernate.tool.hbm2java.BasicRenderer"/>
</codegen>
This no longer seems to work. I looked at the documentation
http://www.hibernate.org/hib_docs/tools ... .html#gen4 and it does not seem to support this attribute and neither does the config xml schema.
Does anyone know how to do this with the new tools?
Thanks
Dan[/b]