mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-23 15:37:58 +02:00
Bug: https://bugs.gentoo.org/936530 Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
16 lines
376 B
Diff
16 lines
376 B
Diff
--- a/build.xml
|
|
+++ b/build.xml
|
|
@@ -150,5 +150,13 @@
|
|
<arg line="${version}" />
|
|
</exec>
|
|
</target>
|
|
+ <target name="javadoc" depends="compile">
|
|
+ <javadoc destdir="doc/api" source="8">
|
|
+ <packageset dir="src"/>
|
|
+ <classpath>
|
|
+ <pathelement path="lib/junit3.8.1/junit.jar" />
|
|
+ </classpath>
|
|
+ </javadoc>
|
|
+ </target>
|
|
|
|
</project>
|