forked from dennisk28/SmartETL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
51 lines (39 loc) · 2.2 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
47
48
49
50
51
<!--===========================================================================
This is the build file for the libformula 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="libformula" basedir="." default="default" xmlns:ivy="antlib:org.apache.ivy.ant">
<description>
This build file is used to create the libformula 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}"/>
<property name="javacchome" value="/PATH/TO/JAVACC/MISSING"/>
<!--
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 build-res/subfloor.xml.
-->
<target name="compile-jj"
description="Compiles the libformula-Parser from the JavaCC specs. Requires JavaCC 3.2 to work.">
<javacc
target="source/org/pentaho/reporting/libraries/formula/parser/Parser.jj"
outputdirectory="source/org/pentaho/reporting/libraries/formula/parser"
javacchome="${javacchome}"
/>
</target>
</project>