Skip to content
Snippets Groups Projects
Commit a5c6c2ee authored by Brutzman, Don's avatar Brutzman, Don
Browse files

javadoc target

parent 74a81f6a
No related branches found
No related tags found
No related merge requests found
...@@ -16,6 +16,69 @@ ...@@ -16,6 +16,69 @@
<nbbrowse url="https://github.com/open-dis/open-dis7-java/issues" /> <nbbrowse url="https://github.com/open-dis/open-dis7-java/issues" />
<!-- TODO implementation-independent approach if possible, but note that other Ant approaches usually have to be customized for each OS. --> <!-- TODO implementation-independent approach if possible, but note that other Ant approaches usually have to be customized for each OS. -->
</target> </target>
<target name="processScenes.javadoc">
<property name="javadoc.windowtitle" value="${archive.name} Examples Archive Javadoc using X3DJSAIL, X3D Java Scene Access Interface Library"/>
<property name="javadoc.doctitle" value="${archive.name} Examples Archive Javadoc"/>
<property name="javadoc.additionalparam" value=""/>
<property name="javadoc.author" value="Don Brutzman brutzman@nps.edu"/>
<property name="javadoc.dir" value="javadoc"/>
<property name="javadoc.encoding" value="ISO-8859-1"/>
<property name="javadoc.copyright" value="Copyright &#169;2005-2020 &lt;a href='https://www.web3d.org'&gt;Web3D Consortium&lt;/a&gt; under an &lt;a href='../../../../license.html'&gt;open-source license&lt;/a&gt;, free for any use. &lt;a href='mailto:x3d-public@web3D.org,brutzman@nps.edu?subject=X3D%20Examples%20Archive%20X3DJSAIL%20feedback'&gt;Feedback&lt;/a&gt; is welcome."/>
<property name="javadoc.noindex" value="false"/>
<property name="javadoc.nonavbar" value="false"/>
<property name="javadoc.notree" value="false"/>
<property name="javadoc.private" value="false"/>
<property name="javadoc.splitindex" value="true"/>
<property name="javadoc.breakiterator" value="true"/>
<property name="javadoc.use" value="true"/><!-- Create class and package usage pages -->
<property name="javadoc.version" value="true"/>
<javadoc destdir="${javadoc.dir}"
author="${javadoc.author}"
bottom="${javadoc.copyright}"
breakiterator="${javadoc.breakiterator}"
classpath="${x3djsail.stylesheets.dir}/${jsai.full.archive.jar.name}"
Encoding="${javadoc.encoding}"
Doctitle="${javadoc.doctitle}"
Header="${javadoc.doctitle}"
maxmemory="4096m"
noindex="${javadoc.noindex}"
nonavbar="${javadoc.nonavbar}"
notree="${javadoc.notree}"
Overview="${javadoc.dir}/overview.html"
Private="${javadoc.private}"
source="${java.source}"
Splitindex="${javadoc.splitindex}"
Use="${javadoc.use}"
useexternalfile="yes"
verbose="true"
version="${javadoc.version}"
Windowtitle="${javadoc.windowtitle}">
<!-- TODO
https://stackoverflow.com/questions/10519558/createprocess-error-206-the-filename-or-extension-is-too-long-when-running-main
sourcepath="${src.org.web3d.x3d.sai}"
useexternalfile="true"
Overview="${src.java.dir}/overview.html"
<classpath refid="app.classpath"/>
<include name="*/*.java"/>
<packageset dir="${src.org.web3d.x3d.sai}" defaultexcludes="yes">
<include name="*.java"/>
<include name="*/*.java"/>
<exclude name="**/*.html"/>
</packageset>
-->
<fileset dir="." defaultexcludes="yes">
<include name="src/**/*.java"/>
<include name="src-generated/**/*.java"/>
<!-- TODO is this enumerations jar getting included in javadoc? -->
<include name="entityjars/open-dis7-entitites-all.jar"/>
<exclude name="**/*.html"/>
</fileset>
</javadoc>
</target>
<!-- <!--
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment