buildframework/helium/builder/java/common.ant.xml
author Bob Rosenberg <bob.rosenberg@nokia.com>
Tue, 03 Aug 2010 12:14:54 +0100
changeset 634 f7179968fc36
parent 587 85df38eb4012
permissions -rw-r--r--
Add verbatim functionality to filtering so it can perform chassis builds. Add ProductsDefinition file for defining exports.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
587
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     1
<?xml version="1.0"?>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     2
<!-- 
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     3
============================================================================ 
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     4
Name        : build.xml 
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     5
Part of     : Helium AntLib
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     6
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     7
Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     8
All rights reserved.
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
     9
This component and the accompanying materials are made available
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    10
under the terms of the License "Eclipse Public License v1.0"
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    11
which accompanies this distribution, and is available
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    12
at the URL "http://www.eclipse.org/legal/epl-v10.html".
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    13
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    14
Initial Contributors:
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    15
Nokia Corporation - initial contribution.
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    16
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    17
Contributors:
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    18
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    19
Description:
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    20
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    21
============================================================================
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    22
-->
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    23
<project name="build-common-macros" xmlns:ivy="antlib:org.apache.ivy.ant" xmlns:au="org.apache.ant.antunit">
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    24
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    25
    <dirname property="builder.dir" file="${ant.file.build-common-macros}/../" />
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    26
    <property name="build.temp.dir" location="${builder.dir}/../build" />
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    27
    <property name="components.temp.dir" location="${build.temp.dir}/components" />
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    28
    <property name="module.temp.dir" location="${components.temp.dir}/${ant.project.name}/" />
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    29
    <property name="lib.dir" location="${module.temp.dir}/lib" />
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    30
    <property name="classes.dir" location="${module.temp.dir}/classes" />
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    31
    <property name="module.bin.dir" location="${module.temp.dir}/bin" />
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    32
    <property name="antunit.result.dir" location="${module.temp.dir}/xunit/antunit" />
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    33
    <property name="junit.result.dir" location="${module.temp.dir}/xunit/junit" />
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    34
    <property name="test.temp.dir" location="${module.temp.dir}/test/temp" />
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    35
    <property name="src.dir" location="${basedir}/src" />
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    36
    <property name="ivy.file" location="${basedir}/ivy.xml" />
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    37
    <property name="jar.file" location="${module.bin.dir}/${ant.project.name}.jar" />
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    38
    <property name="module.version.target" value="1.0" />
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    39
    <property name="ivy.settings.dir" location="${basedir}/../../settings" />
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    40
    <path id="lib.path.id">
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    41
        <fileset dir="${lib.dir}" />
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    42
    </path>
85df38eb4012 helium_9.0-a7879c935424
wbernard
parents:
diff changeset
    43
</project>