On Tue, 2004-05-11 at 12:52, [EMAIL PROTECTED] wrote:
> 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?
>  
> -- 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"/>

Try
<fileset dir="C:/Dev/DCL_Web/src" includes="**/*.java"/>
instead (assuming your classes are xcs.dcl.web.persistence.*).  If that
doesn't work, it's probably the Ant target's name that's causing the
problem :-P


Andrew.

>   <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

Reply via email to