dev-java/eclipsito: remove unused file

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/19150
Signed-off-by: Aaron Bauman <bman@gentoo.org>
This commit is contained in:
Michael Mair-Keimberger
2021-01-21 16:45:43 +01:00
committed by Aaron Bauman
parent bd72a415a6
commit 2f15cda7d8

View File

@@ -1,36 +0,0 @@
diff --git a/build.xml b/build.xml
index d89485a..7be5431 100644
--- a/build.xml
+++ b/build.xml
@@ -17,4 +17,31 @@
<target depends="build" name="jar">
<jar destfile="eclipsito.jar" basedir="bin" compress="yes"/>
</target>
+
+ <target name="javadoc" description="Generates the Javadoc of the application">
+ <javadoc sourcepath="src"
+ packagenames="*"
+ destdir="apidocs"
+ access="protected"
+ old="false"
+ verbose="false"
+ encoding="UTF-8"
+ version="true"
+ use="true"
+ author="true"
+ splitindex="false"
+ nodeprecated="false"
+ nodeprecatedlist="false"
+ notree="false"
+ noindex="false"
+ nohelp="false"
+ nonavbar="false"
+ serialwarn="false"
+ charset="ISO-8859-1"
+ docencoding="UTF-8"
+ source="1.5"
+ linksource="true"
+ breakiterator="false">
+ </javadoc>
+ </target>
</project>