I fixed my problem with the following:
Code:
<target name="zip" depends="clean,build">
<echo> IN THE: zip</echo>
<jar destfile="C:\Zip.jar">
<zipgroupfileset dir="${libDir}" includes="*.jar"/>
<fileset dir="${buildDir}" />
<manifest>
<attribute name="Main-Class" value="org.boss.kpoint.KPoint1" />
</manifest>
</jar>
</target>
It appears that I somewhat did what you had suggested, but I may be wrong. I am still new to Hibernate.
Thanks,
Sean
P.S. If you (or anyone else) could recommend a good book on Hibernate, I would appreciate it. Thanks