forked from pentaho/modeler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
46 lines (36 loc) · 1.87 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
35
36
37
38
39
40
41
42
43
44
45
46
<!-- ======================================================================
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-gwt.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" />
<!--=======================================================================
gwt-compile
Performs the required gwt compiles
====================================================================-->
<target name="gwt-compile">
<ant antfile="${gwt.common.build.file}" target="gwt-compile">
<property name="gwt-module.path" value="org.pentaho.agilebi.AgileBi" />
</ant>
</target>
<!--=======================================================================
Run the swt modeler stand-alone.
====================================================================-->
<target name="run">
<java classname="org.pentaho.agilebi.modeler.debug.SwtModelerUI">
<classpath refid="test.classpath" />
</java>
</target>
</project>