587
|
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
|
2 |
<!--
|
|
3 |
============================================================================
|
|
4 |
Name : build.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="helium-antdata-check" default="database">
|
|
24 |
<description>Helium Antlib build file.</description>
|
|
25 |
|
|
26 |
<!--<import file="../macros.ant.xml"/>-->
|
|
27 |
|
|
28 |
<property name="name" value="antdata"/>
|
|
29 |
<property name="helium.antlib.root.dir" location="../../" />
|
|
30 |
|
|
31 |
<path id="classpath">
|
|
32 |
<fileset dir="${helium.antlib.root.dir}/bin" includes="*.jar"/>
|
|
33 |
<fileset dir="${helium.antlib.root.dir}/build/helium-antdata/lib" includes="*.jar"/>
|
|
34 |
</path>
|
|
35 |
|
|
36 |
<taskdef name="fmpp" classname="fmpp.tools.AntTask" classpathref="classpath" onerror="report"/>
|
|
37 |
<taskdef resource="com/nokia/helium/ant/data/antlib.xml" classpathref="classpath"/>
|
|
38 |
|
|
39 |
<target name="database">
|
|
40 |
<database output="database.xml"/>
|
|
41 |
</target>
|
|
42 |
|
|
43 |
</project>
|
|
44 |
|
|
45 |
|