|
1 <?xml version="1.0" encoding="UTF-8"?> |
|
2 <!-- |
|
3 ============================================================================ |
|
4 Name : libs.ant.xml |
|
5 Part of : Helium |
|
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 <!--* @package framework --> |
|
24 <project name="libs"> |
|
25 <description> |
|
26 Ant task definition declarations. |
|
27 </description> |
|
28 |
|
29 |
|
30 <path id="lib.path"> |
|
31 <fileset dir="${helium.dir}/external/antlibs" includes="**/*.jar"/> |
|
32 <fileset dir="${helium.dir}/tools/common/java/lib" includes="nokia_ant.jar"/> |
|
33 </path> |
|
34 |
|
35 <!-- External tasks. --> |
|
36 <taskdef resource="net/sf/antcontrib/antlib.xml" classpathref="lib.path"/> |
|
37 <taskdef resource="org/apache/ant/antunit/antlib.xml" classpathref="lib.path" uri="org.apache.ant.antunit"/> |
|
38 <taskdef name="xmltask" classname="com.oopsconsultancy.xmltask.ant.XmlTask" classpathref="lib.path"/> |
|
39 <taskdef name="antform" classname="com.sardak.antform.AntForm" classpathref="lib.path" onerror="ignore"/> |
|
40 <taskdef resource="org/tigris/subversion/svnant/svnantlib.xml" classpathref="lib.path" onerror="ignore"/> |
|
41 <taskdef resource="org/apache/ivy/ant/antlib.xml" uri="antlib:org.apache.ivy.ant" classpathref="lib.path"/> |
|
42 <property name="ant.regexp.regexpimpl" value="org.apache.tools.ant.util.regexp.JakartaOroRegexp" classpathref="lib.path"/> |
|
43 <taskdef name="xinclude" classname="de.jeckle.AntExtension.XIncludeTask"/> |
|
44 <!--<taskdef name="xcluder" classname="gr.abiss.xcluder.XercesXcluder" classpathref="lib.path" />--> |
|
45 <taskdef name="fmpp" classname="fmpp.tools.AntTask" classpathref="lib.path" onerror="report"/> |
|
46 <taskdef name="xpathtest" classname="se.jtech.ant.xpath.XPathEvaluatorTask" classpathref="lib.path" onerror="ignore"/> |
|
47 <taskdef classpathref="lib.path" resource="emma_ant.properties" /> |
|
48 |
|
49 <!-- Nokia internal tasks. --> |
|
50 <taskdef resource="com/nokia/ant/antlib.xml" classpathref="lib.path" uri="http://www.nokia.com/helium"/> |
|
51 <taskdef resource="com/nokia/helium/ant/data/antlib.xml" classpathref="lib.path" uri="http://www.nokia.com/helium"/> |
|
52 |
|
53 </project> |