Browse Source

Fixed #344 Add itmill-toolkit-license.xml to lib directory also

svn changeset:620/svn branch:toolkit
tags/6.7.0.beta1
Jani Laakso 17 years ago
parent
commit
1d71299c21
1 changed files with 10 additions and 2 deletions
  1. 10
    2
      build/build.xml

+ 10
- 2
build/build.xml View File

@@ -56,8 +56,16 @@
</target>

<!-- Themes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<target name="themes" depends="copy-themes-to-lib" />
<!-- ,themes-optimize-obfuscate" /> -->
<target name="themes" depends="license-to-lib,copy-themes-to-lib" />

<target name="license-to-lib" depends="init">
<copy todir="${output-dir}/lib">
<fileset dir="WebContent/WEB-INF">
<exclude name="**/.svn" />
<include name="itmill-toolkit-license.xml" />
</fileset>
</copy>
</target>

<target name="copy-themes-to-lib" depends="init">
<copy todir="${output-dir}/lib/themes">

Loading…
Cancel
Save