hacking at this ant script for hours. tried every possible permutation of the fileset.
no doclets are generated and the only output is --
Buildfile: xdoclet-build.xml
xdocletIsCrap:
[hibernatedoclet] (XDocletMain.start 47 ) Running <hibernate/>
BUILD SUCCESSFUL
Total time: 4 seconds
what am i missing here?
I don't know Hibernate/XDoclet combo, but is C:/Dev/DCL_Web/src/xcs/dcl/web/persistence the package root of your classes? Remove the includes="*.java" attribute - it is unnecessary, and in fact means to _only_ include .java files in the persistence directory, but not below. Or, use includes="**/*.java" if you feel the need to be redundant.
Naming your target xdocletIsCrap doesn't help get you answers on this list, though, so perhaps come here with an open mind and good attitude :)
Erik
p.s. Using absolute paths in an Ant build file is not a good practice. I understand if you are doing that to reduce complexity for trouble-shooting, but thought I'd mention it.
-- BJ
<?xml version="1.0" encoding="UTF-8"?>
<project default="xdocletIsCrap" name="XDoclet Generator">
<path id="xdoclet.classpath">
<fileset dir="C:/xdoclet-1.2.1/lib" includes="*.jar"/>
</path>
<target name="xdocletIsCrap" description="Standard Hibernate">
<taskdef classpathref="xdoclet.classpath"
classname="xdoclet.modules.hibernate.HibernateDocletTask" name="hibernatedoclet"/>
<hibernatedoclet excludedtags="@version,@author,@todo,@see"
destdir="C:/Dev/DCL_Web/src/xcs/dcl/web/persistence"
force="true" verbose="true">
<fileset dir="C:/Dev/DCL_Web/src/xcs/dcl/web/persistence" includes="*.java"/>
<hibernate version="2.0"/>
</hibernatedoclet>
</target>
</project>
------------------------------------------------------- This SF.Net email is sponsored by Sleepycat Software Learn developer strategies Cisco, Motorola, Ericsson & Lucent use to deliver higher performing products faster, at low TCO. http://www.sleepycat.com/telcomwpreg.php?From=osdnemail3 _______________________________________________ xdoclet-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-user