-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.xml
More file actions
94 lines (86 loc) · 3.54 KB
/
build.xml
File metadata and controls
94 lines (86 loc) · 3.54 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<project name="streamsx.cloudant" default="all" basedir=".">
<!--
// *******************************************************************************
// * Copyright (C)2017, International Business Machines Corporation and *
// * others. All Rights Reserved. *
// *******************************************************************************
-->
<description>
Build file for streamsx.cloudant project.
</description>
<!-- set global properties for this build -->
<property environment="env" />
<property name="streams.install" value="${env.STREAMS_INSTALL}" />
<property name="toolkit" location="com.ibm.streamsx.cloudant"/>
<property name="tmp" location="tmp" />
<target name="all" depends="toolkit,spldoc"/>
<target name="clean"
description="clean up" >
<delete includeemptydirs="true">
<fileset dir="${basedir}" includes="release-*/"/>
</delete>
<ant dir="${toolkit}" target="clean"/>
</target>
<target name="toolkit"
description="Build any code and index the toolkit." >
<ant dir="${toolkit}" target="all"/>
</target>
<target name="toolkitIndexOnly" description="Index the toolkit.">
<ant dir="${toolkit}" target="indexToolkit" />
</target>
<target name="spldoc"
description="Create SPLDOC">
<antcall target="spldoctoolkit">
<param name="tkdir" value="${toolkit}"/>
<param name="tktitle" value="IBMStreams streamsx.cloudant Toolkit"/>
</antcall>
</target>
<target name="indextoolkit">
<echo message="Tookit to index: ${basedir}"/>
<exec executable="${streams.install}/bin/spl-make-toolkit" failonerror="true">
<arg value="--directory"/>
<arg value="${basedir}"/>
<arg value="-m"/>
</exec>
</target>
<target name="cleantoolkit">
<echo message="Tookit to clean: ${basedir}"/>
<exec executable="${streams.install}/bin/spl-make-toolkit">
<arg value="--clean"/>
<arg value="--directory"/>
<arg value="${basedir}"/>
</exec>
<delete dir="${basedir}/output" quiet="true"/>
</target>
<target name="spldoctoolkit">
<property name="tkdir" value="${basedir}"/>
<echo message="Tookit to SPLDOC: ${tkdir}"/>
<exec executable="${streams.install}/bin/spl-make-doc">
<arg value="--include-composite-operator-diagram"/>
<arg value="--author"/>
<arg value="IBMStreams Open Source Community at GitHub - https://github.com/IBMStreams/${ant.project.name}"/>
<arg value="--doc-title"/>
<arg value="${tktitle}"/>
<arg value="--directory"/>
<arg value="${tkdir}"/>
</exec>
</target>
<!-- Targets to build releases -->
<target name="release" depends="clean,all">
<mkdir dir="${tmp}" />
<!-- Create the time stamp -->
<tstamp />
<!-- Extract info from the toolkit's info.xml -->
<xmlproperty file="${toolkit}/info.xml" prefix="tkinfo" keepRoot="no" />
<echo message="Toolkit Version: ${tkinfo.info:identity.info:version}" />
<property name="releasefilename" value="${tmp}/streamsx.cloudant.toolkit-${tkinfo.info:identity.info:version}-${DSTAMP}-${TSTAMP}.tgz" />
<tar compression="gzip" longfile="gnu"
destfile="${releasefilename}"
basedir="${basedir}"
includes="com.ibm.streamsx.cloudant/**"
excludes="**/.gitignore com.ibm.streamsx.cloudant/.settings/** com.ibm.streamsx.cloudant/.project com.ibm.streamsx.cloudant/.classpath"
/>
<checksum file="${releasefilename}"/>
<checksum algorithm="sha1" file="${releasefilename}"/>
</target>
</project>