buildframework/helium/sf/java/legacy/tests/scenarii/property/feature.ant.xml
changeset 628 7c4a911dc066
equal deleted inserted replaced
588:c7c26511138f 628:7c4a911dc066
       
     1 <?xml version="1.0" encoding="UTF-8"?>
       
     2 <!-- 
       
     3 ============================================================================ 
       
     4 Name        : feature.ant.xml 
       
     5 Part of     : Helium AntLib
       
     6 
       
     7 Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     8 All rights reserved.
       
     9 This component and the accompanying materials are made available
       
    10 under the terms of the License "Eclipse Public License v1.0"
       
    11 which accompanies this distribution, and is available
       
    12 at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
    13 
       
    14 Initial Contributors:
       
    15 Nokia Corporation - initial contribution.
       
    16 
       
    17 Contributors:
       
    18 
       
    19 Description:
       
    20 
       
    21 ============================================================================
       
    22 -->
       
    23 <project name="test-properties" xmlns:au="antlib:org.apache.ant.antunit" xmlns:hlm="http://www.nokia.com/helium">
       
    24     <description>Helium Antlib logger unittests.</description>
       
    25     
       
    26     <!-- Set to true to enable feature
       
    27     @type boolean
       
    28     @editable required
       
    29     @scope private
       
    30     -->
       
    31     <property name="feature.enabled" value="true"/>
       
    32     
       
    33     <!-- Set to true to enable feature - deprecated: Start using feature.enabled property
       
    34     @type boolean
       
    35     @editable required
       
    36     @scope public
       
    37     @deprecated since 11.0 
       
    38     -->
       
    39     <property name="enable.feature" value="true"/>
       
    40     
       
    41     <!--* @property internal.abc.enabled 
       
    42     Set to true to true to run targets.
       
    43     @type boolean
       
    44     @editable required
       
    45     @scope private
       
    46     -->
       
    47     
       
    48     <!--* @property internal.bla.enabled 
       
    49     Set to true to true to run targets - deprecated: Start using internal.abc.enabled property.
       
    50     @type boolean
       
    51     @editable required
       
    52     @scope public
       
    53     @deprecated since 6.0 
       
    54     -->
       
    55     
       
    56     <target name="temp">
       
    57         <echo>Inside the temp target</echo>
       
    58     </target>
       
    59         
       
    60     
       
    61 
       
    62 </project>