mirror of https://github.com/jlizier/jidt
Updating ant javadoc target to use packageset instead of fileset (for JDK >= 8 it seems that fileset is not properly handling the java source code I want the javadocs to ignore; packageset is doing this ok). Fixes Issue #75 (the javadocs part)
This commit is contained in:
parent
c693b5d57e
commit
c4349140f1
12
build.xml
12
build.xml
|
|
@ -116,12 +116,12 @@
|
|||
<target name="javadocs" depends="compile" description="Make the javadocs for the toolkit">
|
||||
<delete dir="${javadocsdir}"/>
|
||||
<javadoc destdir="${javadocsdir}">
|
||||
<fileset dir="${src}">
|
||||
<include name="**/*.java"/>
|
||||
<exclude name="infodynamics/demos/**/*.java"/>
|
||||
<exclude name="**/commonsmath3/*.java"/>
|
||||
<exclude name="**/commonsmath3/**/*.java"/>
|
||||
</fileset>
|
||||
<packageset dir="${src}">
|
||||
<include name="**"/>
|
||||
<exclude name="infodynamics/demos/**"/>
|
||||
<exclude name="**/commonsmath3/*"/>
|
||||
<exclude name="**/commonsmath3/**"/>
|
||||
</packageset>
|
||||
</javadoc>
|
||||
<!-- Change some of the style in the javadocs css for our lists: -->
|
||||
<concat destfile="${javadocsdir}/stylesheet.css" append="true">
|
||||
|
|
|
|||
Loading…
Reference in New Issue