buildframework/helium/tools/common/templates/ido/zip-ant-wa-copy.xml.ftl
changeset 645 b8d81fa19e7d
parent 643 27cf35f95864
child 646 a010554f8551
child 648 d5a8d436d33b
equal deleted inserted replaced
643:27cf35f95864 645:b8d81fa19e7d
     1 <#--
       
     2 ============================================================================ 
       
     3 Name        : zip-ant-wa-copy.xml.ftl 
       
     4 Part of     : Helium 
       
     5 
       
     6 Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     7 All rights reserved.
       
     8 This component and the accompanying materials are made available
       
     9 under the terms of the License "Eclipse Public License v1.0"
       
    10 which accompanies this distribution, and is available
       
    11 at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
    12 
       
    13 Initial Contributors:
       
    14 Nokia Corporation - initial contribution.
       
    15 
       
    16 Contributors:
       
    17 
       
    18 Description:
       
    19 
       
    20 ============================================================================
       
    21 --> 
       
    22 <?xml version="1.0"?>
       
    23 <project name="zip-wa-ant-copy" default="all">
       
    24     <target name="all">
       
    25         <#list data?keys as component>
       
    26             <sequential>
       
    27                 <#assign ba_path= data[component]?substring(3)/>
       
    28                 <zip destfile="${ant['zip.wa.file']}" update="true" excludes="_ccmwaid.inf">
       
    29                     <zipfileset dir="${component}" prefix="${ba_path}"/>
       
    30                  </zip>
       
    31             </sequential>
       
    32         </#list>
       
    33     </target>
       
    34 </project>