Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version:2.1.7
I am trying to gernerate the mapping files using xdoclet but I am not getting any files generated. It look slike the task runs but is not picking up my java source files. I have verbose set to true but do not seem to get much debugging information. Any suggestions? thanks!
Scott
Buildfile: C:\eclipse_workspace\fpdpoc\build.xml
generate-hbm-from-xdoclet:
[hibernatedoclet] (XDocletMain.start 47 ) Running <hibernate/>
BUILD SUCCESSFUL
Total time: 3 seconds
<path id="xdoclet.classpath">
<fileset dir="C:\Programs\xdoclet-1.2.3\lib">
<include name="*.jar"/>
</fileset>
</path>
<target name="generate hbm using xdoclet" description="Generates Hibernate class descriptor files." >
<!-- Define the hibernatedoclet task -->
<taskdef name="hibernatedoclet"
classname="xdoclet.modules.hibernate.HibernateDocletTask">
<classpath>
<path refid="xdoclet.classpath"/>
</classpath>
</taskdef>
<!-- Execute the hibernatedoclet task -->
<hibernatedoclet
destdir="${src.dir}/com/ccr/cl/model/mapping"
excludedtags="@version,@author,@todo"
force="true"
mergedir="${src.dir}/com/ccr/cl/model/mapping"
verbose="true">
<fileset dir="${src.dir}">
<include name="**/model/*.java"/>
</fileset>
<hibernate version="2.1"/>
</hibernatedoclet>
</target>