Exclude non-source files in javadoc target.

This commit is contained in:
John B. Matthews 2008-12-16 09:33:58 +00:00
parent ecdc344cb7
commit 7c5fab362d

View File

@ -180,9 +180,15 @@
<target name="javadoc" depends="init" description="Build javadoc"> <target name="javadoc" depends="init" description="Build javadoc">
<javadoc destdir="${javadoc}" author="true" windowtitle="AppleCommander ${acVersion} JavaDoc" <javadoc destdir="${javadoc}" author="true" windowtitle="AppleCommander ${acVersion} JavaDoc"
classpath="${swtjar};${junitjar}"> classpath="${swtjar};${junitjar}">
<fileset dir="${source}"/> <fileset dir="${source}">
<fileset dir="${testsrc}"/> <exclude name="**/*gif"/>
<exclude name="**/*dump"/>
<exclude name="**/*properties"/>
</fileset>
<fileset dir="${testsrc}">
<exclude name="**/*properties"/>
</fileset>
</javadoc> </javadoc>
</target> </target>