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"/>
  <hibernate version="2.0"/>
 
</hibernatedoclet>
</target>
</project>

Reply via email to