Hi
I need some help with exporting a schema to my DB via ANT.
I always get the following error.
Code:
29: taskdef class org.hibernate.tool.ant.HibernateToolTask cannot be found
This is what I got so far.
Code:
<!-- C L A S S P A T H -->
<path id="hibernate-classpath">
<fileset dir="${lib.dir}">
<include name="hibernate-annotations.jar"/>
<include name="ejb3-persistence.jar"/>
<include name="hibernate-entitymanager.jar"/>
<include name="hibernate3.jar"/>
<include name="jboss-archive-browsing.jar"/>
<include name="javaassist.jar"/>
</fileset>
</path>
<!-- T A S K D E F -->
<taskdef name="hibernate-tool"
classname="org.hibernate.tool.ant.HibernateToolTask"
classpathref="hibernate-classpath" />
Hope you can help me.