playing with javadoc options
This commit is contained in:
parent
a8dbc26260
commit
50c5215717
1 changed files with 8 additions and 1 deletions
|
@ -41,7 +41,14 @@
|
||||||
|
|
||||||
<!-- Generate javadocs for current project into ${doc.dir} -->
|
<!-- Generate javadocs for current project into ${doc.dir} -->
|
||||||
<target name="doc" depends="init" description="generate documentation">
|
<target name="doc" depends="init" description="generate documentation">
|
||||||
<javadoc sourcepath="${src.dir}" destdir="${doc.dir}"/>
|
<javadoc
|
||||||
|
sourcepath="${src.dir}"
|
||||||
|
destdir="${doc.dir}"
|
||||||
|
author="true"
|
||||||
|
version="true"
|
||||||
|
use="true"
|
||||||
|
private="true"
|
||||||
|
/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
Loading…
Reference in a new issue