-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.xml
34 lines (25 loc) · 1.64 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!--===========================================================================
This is the build file for the pentaho-reporting-engine-datasource-file-fixed-width project.
This build file will use the build-res/subfloor.xml file as the default build
process and should only override the tasks that need to differ from
the common build file.
See build-res/subfloor.xml for more details
============================================================================-->
<project name="pentaho-reporting-datasource-editor-external" basedir="." default="default" xmlns:ivy="antlib:org.apache.ivy.ant">
<description>
This build file is used to create the API project
and works with the build-res/subfloor.xml file.
</description>
<property file="${user.home}/.pentaho-reporting-build-settings.properties"
description="Per user override settings-file for all pentaho-reporting projects." />
<!-- Define the default location of the common build file -->
<property name="reporting.build.file" value="build-res/reporting-shared.xml"
description="This is the location of the standardized build-res/reporting-shared.xml file"/>
<!-- Import the build-res/subfloor.xml file which contains all the default tasks -->
<import file="${reporting.build.file}"/>
<!-- Define the default location of the common build file -->
<property name="common.build.file" value="./build-res/subfloor.xml"
description="This is the location of the standardized build-res/subfloor.xml file"/>
<!-- Import the build-res/subfloor.xml file which contains all the default tasks -->
<import file="${common.build.file}"/>
</project>