Commit 5d94e450 authored by Bill Lynch's avatar Bill Lynch Committed by bill

Added a deployjar task


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@241 b35dd754-fafc-0310-a699-88a17e54d16e
parent cafbc7b3
......@@ -73,6 +73,7 @@
<property name="version.extra" value="beta" />
<property name="dist.prefix" value="jive_messenger" />
<property name="overwrite" value="false" />
<property name="deploy.jar.dir" value="${jar.dest.dir}" />
<!-- ======================================================================================= -->
<!-- PATHs / PATTERNSETs / FILTERSETs -->
......@@ -205,6 +206,14 @@
<antcall target="-prepare" />
</target>
<!-- deployjar ============================================================================= -->
<target name="deployjar" depends="jar" description="Pushes JARs to specified location.">
<copy todir="${deploy.jar.dir}" overwrite="${overwrite}">
<fileset dir="${jar.dest.dir}" includes="*.jar" />
</copy>
</target>
<!-- war =================================================================================== -->
<target name="war" depends="jar" description="Creates a WAR of Messenger">
<mkdir dir="${war.dest.dir}" />
......
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