mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
Bug: https://bugs.gentoo.org/936530 Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
17 lines
376 B
Diff
17 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>
|