-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.xml
More file actions
29 lines (22 loc) · 856 Bytes
/
build.xml
File metadata and controls
29 lines (22 loc) · 856 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<project name="streamsx.transportation" default="all">
<property environment="env"/>
<property name="streams.install" value="${env.STREAMS_INSTALL}"/>
<taskdef resource="com/ibm/streamsx/ant/streams.xml"/>
<property name="toolkit"
value="${basedir}/com.ibm.streamsx.transportation"/>
<target name="all" depends="index,doc"/>
<target name ="index">
<indextoolkit location="${toolkit}"/>
</target>
<target name="doc">
<spldoc location="${toolkit}" compositeGraphs="yes"
title="Sample Transportation Toolkit"
outputDirectory="${toolkit}/doc"/>
</target>
<target name="clean">
<delete dir="${toolkit}/output"/>
<delete file="${toolkit}/toolkit.xml"/>
<delete dir="${toolkit}/doc"/>
</target>
</project>