Commit cef8ba45 authored by Bill Lynch's avatar Bill Lynch Committed by bill

Added images to documentation build


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@818 b35dd754-fafc-0310-a699-88a17e54d16e
parent 3e5d7387
......@@ -93,6 +93,9 @@
<property name="dist.prefix" value="jive_messenger" />
<property name="overwrite" value="false" />
<property name="deploy.jar.dir" value="${jar.dest.dir}" />
<property name="installer.install4j.home" value="" />
<property name="installer.src" value="${basedir}/build/installer" />
<property name="installer.install4j.srcfile" value="${installer.src}/messenger.install4j" />
<!-- ======================================================================================= -->
<!-- PATHs / PATTERNSETs / FILTERSETs -->
......@@ -562,6 +565,12 @@
<copy todir="${release.src.out.dir}/documentation">
<fileset dir="${docs.dir}/docs/licenses" />
</copy>
<copy todir="${release.out.dir}/documentation/images">
<fileset dir="${docs.dir}/docs/images" />
</copy>
<copy todir="${release.src.out.dir}/documentation/images">
<fileset dir="${docs.dir}/docs/images" />
</copy>
<!-- Copy Javadocs -->
<copy todir="${release.out.dir}/documentation/javadoc">
......@@ -641,6 +650,15 @@
</antcall>
</target>
<!-- installer ============================================================================= -->
<target name="installer" description="Creates an Install4j installer">
<taskdef name="install4j"
classname="com.install4j.Install4JTask"
classpath="${installer.install4j.home}/bin/install4j.jar" />
<install4j projectfile="${installer.install4j.srcfile}"
destination="" />
</target>
<!-- plugins =============================================================================== -->
<target name="plugins" description="Builds all plugins">
<!-- Call jar task, can't do this is as a 'depends' call of this target because
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment