javauis/tsrc/fute/properties-basic-midlet.xml
branchRCL_3
changeset 25 9ac0a0a7da70
equal deleted inserted replaced
24:0fd27995241b 25:9ac0a0a7da70
       
     1 <!--
       
     2 #
       
     3 # Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
       
     4 # All rights reserved.
       
     5 # This component and the accompanying materials are made available
       
     6 # under the terms of "Eclipse Public License v1.0"
       
     7 # which accompanies this distribution, and is available
       
     8 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     9 #
       
    10 # Initial Contributors:
       
    11 # Nokia Corporation - initial contribution.
       
    12 #
       
    13 # Contributors:
       
    14 #
       
    15 # Description: 
       
    16 #
       
    17 -->
       
    18 
       
    19 <project name="PropertiesBasicMidlet">
       
    20 
       
    21     <!-- Package Preverified classes, resources and MANIFEST file -->
       
    22     <target name="pack" depends="preverify">
       
    23         <wtkjad jadfile="${bin}/${package.name}.jad"
       
    24             jarfile="${bin}/${package.name}.jar"
       
    25             update="true"
       
    26             config="1.1"
       
    27             profile="2.1"
       
    28             manifest="${bin}/MANIFEST.MF"
       
    29             name="${package.name}"
       
    30             vendor="${company.name}">
       
    31             <attribute name="MIDlet-Permissions" value="${midlet.permissions}"/>
       
    32             <attribute name="MicroEdition-Profile" value="MIDP-2.1"/>
       
    33             <attribute name="MicroEdition-Configuration" value="CLDC-1.1"/>
       
    34             <attribute name="MIDlet-Version" value="${midlet.version}"/>
       
    35             <attribute name="MIDlet-Description" value="${midlet.description}"/>
       
    36             <midlet name="${midlet1.name}" icon="${midlet1.icon.name}" class="${midlet1.package.name}" />
       
    37         </wtkjad>
       
    38 
       
    39         <wtkpackage
       
    40             jarfile="${bin}/${package.name}.jar"
       
    41             jadfile="${bin}/${package.name}.jad"
       
    42             classpath="${project.class.path}"
       
    43             basedir="${prever}"
       
    44             autoversion="false">
       
    45             <fileset dir="${res}"
       
    46                 excludes="**/distribution.policy.s60" />
       
    47         </wtkpackage>
       
    48     </target>
       
    49 
       
    50 </project>