Commit 8ec7a959 authored by Bill Lynch's avatar Bill Lynch Committed by bill

Refactored how the license is added to a release.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@1111 b35dd754-fafc-0310-a699-88a17e54d16e
parent 28984099
......@@ -109,6 +109,8 @@
<property name="installer.file_prefix" value="${installer.app_short_name}" />
<property name="installer.release_root_path" value="${release.dest.dir}" />
<property name="license.file.path" value="${docs.dir}/dist" />
<!-- ======================================================================================= -->
<!-- PATHs / PATTERNSETs / FILTERSETs -->
<!-- ======================================================================================= -->
......@@ -553,19 +555,22 @@
<!-- Copy dist docs, use filtering -->
<copy todir="${release.out.dir}">
<fileset dir="${docs.dir}/dist" includes="*.*" />
<fileset dir="${docs.dir}/dist" includes="*.*" excludes="LICENSE.html" />
<filterset>
<filter token="builddate" value="${builddate}" />
<filter token="version" value="${version}" />
</filterset>
</copy>
<copy todir="${release.src.out.dir}">
<fileset dir="${docs.dir}/dist" includes="*.*" />
<fileset dir="${docs.dir}/dist" includes="*.*" excludes="LICENSE.html" />
<filterset>
<filter token="builddate" value="${builddate}" />
<filter token="version" value="${version}" />
</filterset>
</copy>
<!-- Copy the license -->
<copy todir="${release.out.dir}" file="${license.file.path}/LICENSE.html" />
<copy todir="${release.src.out.dir}" file="${license.file.path}/LICENSE.html" />
<!-- Copy docs -->
<copy todir="${release.out.dir}/documentation">
......
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