<!-- JUnit -->
<property name="junit.halt.on.failure" value="false"/>
<property name="unitreport" value="cl-unit.xml"/>
+
+ <!-- DocCheck path -->
+ <property name="doccheck.home" value="${ant.lib.dir}/doccheck1.2b2/doccheck.jar"/>
+ <path id="doccheck.path">
+ <pathelement location="${doccheck.home}"/>
+ </path>
<!-- Hibernate paths -->
<!-- name of the file in the source directory containing
<javadoc packagenames="*" destdir="${module.doccheck.dir}"
author="true" version="true"
doclet="com.sun.tools.doclets.doccheck.DocCheck"
- docletpathref="doccheck.path" source="${javac.source}">
- <fileset dir="${module.source.dir}">
+ docletpathref="doccheck.path"
+ classpath="${module.classpath}"
+ sourcepath="${module.source.dir}">
+ <!-- fileset dir="${module.source.dir}">
<include name="**/*.java" />
- </fileset>
+ </fileset -->
</javadoc>
</target>