Skip to content

Commit

Permalink
Removed use of the proprietary DocCheck utility
Browse files Browse the repository at this point in the history
Signed-off-by: Rajarshi  Guha <rajarshi.guha@gmail.com>
  • Loading branch information
egonw authored and rajarshi committed Jun 11, 2010
1 parent e8b13b2 commit 1523f66
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 72 deletions.
1 change: 0 additions & 1 deletion build.xml
Expand Up @@ -868,7 +868,6 @@
<copy todir="${sourcedist.dir}/develjar">
<fileset dir="develjar">
<exclude name="pmd-1.8.jar"/>
<exclude name="doccheck.jar"/>
<exclude name="dbdoclet*.*"/>
</fileset>
</copy>
Expand Down
1 change: 0 additions & 1 deletion develjar/.gitignore

This file was deleted.

70 changes: 0 additions & 70 deletions javadoc.xml
Expand Up @@ -103,76 +103,6 @@
javacchome="jar"/>
</target>

<!-- The doclet used in the following targets cannot be put in CVS because it is
licensed otherwise, but it can be downloaded from:
http://java.sun.com/j2se/javadoc/doccheck/
-->

<target name="doccheck" depends="check-doccheck" if="doccheck.present">
<antcall target="doccheck-module"><param name="module" value="interfaces"/></antcall>
<antcall target="doccheck-module"><param name="module" value="core"/></antcall>
<antcall target="doccheck-module"><param name="module" value="data"/></antcall>
<antcall target="doccheck-module"><param name="module" value="datadebug"/></antcall>
<antcall target="doccheck-module"><param name="module" value="nonotify"/></antcall>
<antcall target="doccheck-module"><param name="module" value="standard"/></antcall>
<antcall target="doccheck-module"><param name="module" value="atomtype"/></antcall>
<antcall target="doccheck-module"><param name="module" value="io"/></antcall>
<antcall target="doccheck-module"><param name="module" value="ioformats"/></antcall>
<antcall target="doccheck-module"><param name="module" value="inchi"/></antcall>
<antcall target="doccheck-module"><param name="module" value="extra"/></antcall>
<antcall target="doccheck-module"><param name="module" value="fingerprint"/></antcall>
<antcall target="doccheck-module"><param name="module" value="formula"/></antcall>
<antcall target="doccheck-module"><param name="module" value="render"/></antcall>
<antcall target="doccheck-module"><param name="module" value="reaction"/></antcall>
<antcall target="doccheck-module"><param name="module" value="libiocml"/></antcall>
<antcall target="doccheck-module"><param name="module" value="libiomd"/></antcall>
<antcall target="doccheck-module"><param name="module" value="builder3d"/></antcall>
<antcall target="doccheck-module"><param name="module" value="smiles"/></antcall>
<antcall target="doccheck-module"><param name="module" value="smarts"/></antcall>
<antcall target="doccheck-module"><param name="module" value="sdg"/></antcall>
<antcall target="doccheck-module"><param name="module" value="forcefield"/></antcall>
<antcall target="doccheck-module"><param name="module" value="pdb"/></antcall>
<antcall target="doccheck-module"><param name="module" value="qsar"/></antcall>
<antcall target="doccheck-module"><param name="module" value="qsaratomic"/></antcall>
<antcall target="doccheck-module"><param name="module" value="qsarbond"/></antcall>
<antcall target="doccheck-module"><param name="module" value="qsarionpot"/></antcall>
<antcall target="doccheck-module"><param name="module" value="qsarmolecular"/></antcall>
<antcall target="doccheck-module"><param name="module" value="qsarprotein"/></antcall>
<antcall target="doccheck-module"><param name="module" value="pcore"/></antcall>
<antcall target="doccheck-module"><param name="module" value="structgen"/></antcall>
<antcall target="doccheck-module"><param name="module" value="valencycheck"/></antcall>
<antcall target="doccheck-module"><param name="module" value="charges"/></antcall>
<antcall target="doccheck-module"><param name="module" value="diff"/></antcall>
</target>

<target name="check-doccheck">
<available file="develjar/doccheck.jar" property="doccheck.present" />
<fail unless="doccheck.present"
message="This task requires DocCheck, which can be downloaded from http://java.sun.com/j2se/javadoc/doccheck/. Copy the doccheck.jar into develjar/."/>
</target>

<target name="doccheck-module">
<mkdir dir="reports/javadoc/${module}/"/>
<mkdir dir="${build}/src/${module}"/>
<copy todir="${build}/src/${module}">
<fileset dir="${src}/main">
<includesfile name="${build}/${module}.javafiles"/>
</fileset>
</copy>
<javadoc private="false" public="true"
destdir="reports/javadoc/${module}/">
<classpath refid="project.class.path" />

<doclet name="com.sun.tools.doclets.doccheck.DocCheck"
path="develjar/doccheck.jar" />
<sourcepath>
<pathelement path="${build}/src/${module}"/>
</sourcepath>
</javadoc>
</target>

<target id="check" name="check">
<condition property="isMacOsX">
<and>
Expand Down

0 comments on commit 1523f66

Please sign in to comment.