summaryrefslogtreecommitdiff
path: root/qpid/java/client/build.xml
diff options
context:
space:
mode:
authorMartin Ritchie <ritchiem@apache.org>2008-09-05 15:31:08 +0000
committerMartin Ritchie <ritchiem@apache.org>2008-09-05 15:31:08 +0000
commit39d18a81fa950cc83e98ea5bd42a2bd014cd46f7 (patch)
tree9cf1dfd93648932e6d847ad7640f474686ab7a02 /qpid/java/client/build.xml
parent67cb9d3c75bada36fae0086a04b6b1e9fc92459f (diff)
downloadqpid-python-39d18a81fa950cc83e98ea5bd42a2bd014cd46f7.tar.gz
QPID-1257 : Add new build target 'release-bin' that will generate a broker and client package. Documenation will be added to the wiki such that performance tests could also be packaged.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@692461 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/client/build.xml')
-rw-r--r--qpid/java/client/build.xml12
1 files changed, 12 insertions, 0 deletions
diff --git a/qpid/java/client/build.xml b/qpid/java/client/build.xml
index abeb3ec903..e826df9c74 100644
--- a/qpid/java/client/build.xml
+++ b/qpid/java/client/build.xml
@@ -33,4 +33,16 @@
javacchome="${project.root}/lib"/>
</target>
+
+ <uptodate property="doc-release.done" targetfile="${module.release}/api/index.html">
+ <srcfiles dir="${module.src}" includes="**/*.java"/>
+ </uptodate>
+
+ <target name="doc-release" depends="build" unless="doc-release.done">
+ <javadoc destdir="${module.release}/api" sourcepathref="module.src.path"
+ classpathref="module.class.path" packagenames="org.apache.qpid.jms"/>
+ </target>
+
+ <target name="release-bin" depends="release-bin-tasks"/>
+
</project>