mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2025-02-08 03:30:40 +00:00
Exclude non-source files in javadoc target.
This commit is contained in:
parent
ecdc344cb7
commit
7c5fab362d
@ -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>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user