We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a113f3 commit 0aa3693Copy full SHA for 0aa3693
1 file changed
build.xml
@@ -9,6 +9,7 @@
9
<property name="build.dir" value="build/classes"/>
10
<property name="jar.dir" value="build/jar"/>
11
<property name="dist.dir" value="dist"/>
12
+ <property name="docs.dir" value="build/docs"/>
13
14
<condition property="isMac">
15
<os family="mac"/>
@@ -52,6 +53,16 @@
52
53
<java jar="${jar.dir}/${app.name}.jar" fork="true"/>
54
</target>
55
56
+ <target name="javadoc" description="Generate API documentation with Javadoc">
57
+ <mkdir dir="${docs.dir}"/>
58
+ <javadoc destdir="${docs.dir}"
59
+ sourcepath="${src.dir}"
60
+ packagenames="*"
61
+ use="true"
62
+ author="true"
63
+ version="true"/>
64
+ </target>
65
+
66
<target name="package" description="Build the native installer for the current OS (DMG or DEB)">
67
<antcall target="dmg"/>
68
<antcall target="debian"/>
0 commit comments