equal
deleted
inserted
replaced
|
1 <?xml version="1.0" encoding="UTF-8"?> |
|
2 <!-- |
|
3 ============================================================================ |
|
4 Name : build.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 <project name="minibuild.docs" default="minibuild.docs-test" xmlns:au="org.apache.ant.antunit" xmlns:hlm="http://www.nokia.com/helium" basedir="."> |
|
24 |
|
25 <property name="helium.dir" location="../../.." /> |
|
26 <import file="../../../build.xml" /> |
|
27 |
|
28 <!-- Run Ant unit tests. --> |
|
29 <target name="minibuild.docs-test"> |
|
30 <mkdir dir="${helium.build.dir}/temp/minibuild"/> |
|
31 <mkdir dir="${helium.build.dir}/report/antunit/minibuild"/> |
|
32 <au:antunit> |
|
33 <fileset dir="${helium.dir}" includes="tests/minibuilds/docs/test_docs_minibuild.ant.xml"/> |
|
34 <au:plainlistener/> |
|
35 <hlm:antcoveragelistener outputfile="${helium.build.dir}/report/antunit/minibuild/ant_coverage.txt"/> |
|
36 <au:xmllistener toDir="${helium.build.dir}/report/antunit/minibuild" logLevel="info" /> |
|
37 </au:antunit> |
|
38 </target> |
|
39 |
|
40 </project> |