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
1 changed files with 9 additions and 3 deletions

View File

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