* Switch to I2P logging.

* Add javadoc where necessary.
* Add javadoc build target.
* Some code cleanup.
This commit is contained in:
mathiasdm
2010-11-29 17:17:59 +00:00
parent 02c3abfc4c
commit e06ce250ab
5 changed files with 80 additions and 25 deletions

View File

@@ -6,12 +6,14 @@
<property name="dist" location="dist"/>
<property name="jar" value="desktopgui.jar"/>
<property name="resources" value="resources"/>
<property name="javadoc" value="javadoc"/>
<property name="javac.compilerargs" value=""/>
<target name="init">
<mkdir dir="${build}"/>
<mkdir dir="${build}/${resources}"/>
<mkdir dir="${build}/${javadoc}"/>
<mkdir dir="${dist}"/>
</target>
@@ -44,6 +46,22 @@
</jar>
</target>
<target name="javadoc">
<mkdir dir="${build}" />
<mkdir dir="${build}/${javadoc}" />
<javadoc
sourcepath="${src}" destdir="${build}/${javadoc}"
packagenames="*"
use="true"
splitindex="true"
windowtitle="Desktopgui">
<classpath>
<pathelement location="../../router/java/build/router.jar" />
<pathelement location="../../core/java/build/i2p.jar" />
</classpath>
</javadoc>
</target>
<target name="dist" depends="jar" />
<target name="all" depends="jar" />
</project>