mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2025-01-18 04:34:25 +00:00
Exclude non-source files in javadoc target.
This commit is contained in:
parent
ecdc344cb7
commit
7c5fab362d
@ -181,8 +181,14 @@
|
|||||||
<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>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user