forked from pentaho/pentaho-s3-vfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
33 lines (28 loc) · 1.1 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
<!--===========================================================================
This is the build file for the pentaho-reporting-engine-classic-ext-kettle project.
This build file will use the common_build.xml file as the default build
process and should only override the tasks that need to differ from
the common build file.
See common_build.xml for more details
============================================================================-->
<project name="pentaho-s3-vfs" basedir="." default="default">
<description>
This build file is used to create the API project
and works with the common_build.xml file.
</description>
<import file="build-res/subfloor.xml" />
<!-- Setup the classpath used for testing -->
<path id="test.classpath">
<pathelement path="${testclasses.dir}"/>
<pathelement path="${classes.dir}"/>
<fileset dir="${devlib.dir}">
<include name="**/*.jar"/>
</fileset>
<fileset dir="${testlib.dir}">
<include name="**/*.jar"/>
</fileset>
<fileset dir="${lib.dir}">
<include name="**/*.jar"/>
</fileset>
</path>
</project>