</testng>
</target>
- <target name="buildindices" depends="init, prepare" unless="help.uptodate">
+ <target name="buildindices" depends="init, prepare,linkcheck" unless="help.uptodate">
<java classname="com.sun.java.help.search.Indexer" classpathref="build.classpath" fork="true" dir="${outputDir}/${helpDir}">
<arg line="html" />
</java>
</packageset>
</javadoc>
</target>
+ <target name="linkcheck">
+ <!-- finally, publish the help files -->
+ <javac srcdir="utils" destdir="utils" includes="HelpLinksChecker.java"/>
+ <java fork="true" dir="help" classpath="utils" classname="HelpLinksChecker">
+ <arg file="help"/>
+ <arg value="-nointernet"/>
+ </java>
+</target>
</project>