-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
25 lines (19 loc) · 1.12 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
<!-- ======================================================================
description: main build file for pentaho . .
====================================================================== -->
<project name="pentaho-modeler" default="default" basedir="." xmlns:ivy="antlib:org.apache.ivy.ant">
<description>Pentaho Common Modeler</description>
<!-- Import the version information -->
<property file="${basedir}/version.properties" />
<!-- Define the default location of the gwt common build file -->
<property name="gwt.common.build.file" value="./build-res/subfloor.xml" description="This is the location of the standardized common_build.xml file" />
<!-- Import the common_build.xml file which contains all the default tasks -->
<import file="${gwt.common.build.file}" />
<!--
AS STATED ABOVE, THE ONLY TASKS THAT SHOULD EXIST IN THIS BUILD FILE ARE
THE TASKS THAT NEED TO DIFFER FROM THE DEFAULT IMPLEMENTATION OF THE TASKS
FOUND IN common_build.xml.
-->
<!-- Directory in which the source will be copied before a compile -->
<property name="temp-src.dir" value="${bin.dir}/src" />
</project>