summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkcr <kcr>2007-06-19 20:37:39 +0000
committerkcr <kcr>2007-06-19 20:37:39 +0000
commitf28eae8bf914d1da7389abeccf6891118e4839ab (patch)
tree8ce67dfb7ffd0443c00a56032535332e32043af1
parent52c04143e39c0c18055875701c50c2f55ac10cc2 (diff)
Added javadoc target
-rw-r--r--build.xml29
-rw-r--r--nbproject/project.xml4
2 files changed, 25 insertions, 8 deletions
diff --git a/build.xml b/build.xml
index 09f9fa1..e79e1af 100644
--- a/build.xml
+++ b/build.xml
@@ -40,8 +40,8 @@
* intended for use in the design, construction, operation or
* maintenance of any nuclear facility.
*
- * $Revision: 1.2 $
- * $Date: 2007/06/19 20:11:34 $
+ * $Revision: 1.3 $
+ * $Date: 2007/06/19 20:37:39 $
* $State: Exp $
*/
-->
@@ -63,9 +63,9 @@
<!-- Compile the java code from ${src} into ${build}/classes -->
<javac srcdir="${src}"
destdir="${build}/classes"
- source="1.5"
- target="1.5"
- debug="true"
+ source="1.5"
+ target="1.5"
+ debug="true"
deprecation="true"/>
<!-- Copy LICENSE and COPYRIGHT files to build -->
@@ -73,22 +73,35 @@
<fileset dir="${topdir}"
includes ="COPYRIGHT.txt LICENSE*.txt"/>
</copy>
-
+
</target>
<target name="jar" depends="init,compile">
<!-- Create the dist directory -->
<mkdir dir="${dist}"/>
-
+
<!-- Create the jar file -->
<jar jarfile="${output.jar}"
manifest="manifest.mf"
update="no"
compress="false">
- <fileset dir="${build}/classes" includes="org/**/*"/>
+ <fileset dir="${build}/classes" includes="org/**/*"/>
</jar>
</target>
+ <target name="javadoc" depends="init">
+ <!-- Create the javadoc directory -->
+ <mkdir dir="${dist}/javadoc"/>
+
+ <!-- Compile the javadoc from ${src} into ${dist}/javadoc -->
+ <javadoc packagenames="org.jdesktop.applet.util"
+ destdir="${dist}/javadoc">
+ <sourcepath>
+ <pathelement location="${src}"/>
+ </sourcepath>
+ </javadoc>
+ </target>
+
<target name="clean" depends="init">
<delete dir="${build}"/>
<delete dir="${dist}"/>
diff --git a/nbproject/project.xml b/nbproject/project.xml
index 761bf05..df2ba34 100644
--- a/nbproject/project.xml
+++ b/nbproject/project.xml
@@ -28,6 +28,9 @@
<target>clean</target>
<target>jar</target>
</action>
+ <action name="javadoc">
+ <target>javadoc</target>
+ </action>
</ide-actions>
<view>
<items>
@@ -43,6 +46,7 @@
<ide-action name="build"/>
<ide-action name="clean"/>
<ide-action name="rebuild"/>
+ <ide-action name="javadoc"/>
</context-menu>
</view>
<subprojects/>