javacommons/connectionmanager/build/build.xml
changeset 21 2a9601315dfc
equal deleted inserted replaced
18:e8e63152f320 21:2a9601315dfc
       
     1 <!--
       
     2 #
       
     3 # Copyright (c) 2008-2009 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="javaconnectionmanager" default="deploy" basedir=".">
       
    20     <description>
       
    21         Builds ConnectionManager
       
    22     </description>
       
    23 
       
    24   <import file="../../../build/utilities.xml"/>
       
    25   
       
    26    <target name="init.component.properties">
       
    27     <condition property="java.src.paths"
       
    28                value="../javasrc.s60">
       
    29       <isset property="target.s60" />
       
    30     </condition>
       
    31     
       
    32     <condition property="java.src.paths"
       
    33                value="../javasrc.linux">
       
    34       <isset property="target.linux" />
       
    35     </condition>   
       
    36  
       
    37     
       
    38     <echo message="java.src.paths = ${java.src.paths}"/>
       
    39   </target> 
       
    40 
       
    41   <!-- Needed by the utilities.xml. See the description form the utilities.xml
       
    42        file -->
       
    43   <property name="javah.classnames" 
       
    44             value="com.nokia.mj.impl.connectionmanager.ConnectionManager"/>
       
    45 
       
    46   
       
    47   <!-- Setting all classes to be visible to everybody. TODO: Check is it correct to publish all the classes -->
       
    48   <target name="create.internal.api.jar">
       
    49     <omj.internal.apis includes="com/nokia/mj/impl/connectionmanager/ConnectionManager.class,
       
    50     														com/nokia/mj/impl/connectionmanager/AccessPoint.class"/>
       
    51   </target>
       
    52 
       
    53 </project>