doccheck target now working.
authorErik Brakkee <erik@brakkee.org>
Thu, 9 Mar 2006 10:33:00 +0000 (10:33 +0000)
committerErik Brakkee <erik@brakkee.org>
Thu, 9 Mar 2006 10:33:00 +0000 (10:33 +0000)
build/header.xml
build/trailer.xml

index 33a8cd00530618c12d709cdf418d14c1d47a32dd..acea5089780be7f60fde2f501a30c1ca08a4e5d9 100644 (file)
     <!-- 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
index b93f427946df82fcd0a2c72231dde3cd3ad94d3f..22b33953ed7dd4bdcbd974870eab90ba9b434f81 100644 (file)
        <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>