aboutsummaryrefslogtreecommitdiff
path: root/build.xml
blob: 7dc70d0039cdb106735c46106af5b17ad13409f8 (plain)
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
<project name="clojure-contrib" default="jar" xmlns:mvn="urn:maven-artifact-ant">

  <description>
    Pack all clojure-contrib sources into a JAR. Compile those that can
    be compiled standalone if the clojure.jar property points us to
    clojure.jar.
  </description>

  <property name="src" location="src"/>
  <property name="build" location="classes"/>
  <property name="dist" location="dist"/>
  <property name="contrib.version.label" value="1.0.0-RC1"/>
  <property name="zip" location="clojure-contrib-${contrib.version.label}.zip"/>

  <available property="hasclojure" file="${clojure.jar}"/>

  <!-- The JAR file to create. -->
  <property name="jarfile" location="clojure-contrib.jar"/>
  <property name="slimjarfile" location="clojure-contrib-slim.jar"/>

  <!-- These make sense for building on tapestry.formos.com -->

  <property name="snapshot.repo.dir" location="/var/www/maven-snapshot-repository"/>
  <property name="stable.repo.dir" location="/var/www/maven-repository"/>

  <target name="init">
    <tstamp/>
    <mkdir dir="${build}"/>
  </target>

  <target name="clean" description="Remove generated files and directories.">
    <delete file="${jarfile}"/>
    <delete file="${slimjarfile}"/>
    <delete file="${zip}"/>
    <delete dir="${build}"/>
    <delete dir="${dist}"/>
  </target>

  <target name="test_clojure"
          description="Run clojure tests"
          if="hasclojure">
    <java classname="clojure.main">
      <classpath>
        <path location="${build}"/>
        <path location="${src}"/>
        <path location="${clojure.jar}"/>
      </classpath>
      <arg value="-e"/>
      <arg value="(require '(clojure.contrib [test-clojure :as main])) (main/run)"/>
    </java>
  </target>

  <target name="test_contrib"
          description="Run contrib tests"
          if="hasclojure">
    <java classname="clojure.main">
      <classpath>
        <path location="${build}"/>
        <path location="${src}"/>
        <path location="${clojure.jar}"/>
      </classpath>
      <arg value="-e"/>
      <arg value="(require '(clojure.contrib [test-contrib :as main])) (main/run)"/>
    </java>
  </target>

  <target name="test_datalog"
          description="Run datalog tests"
          if="hasclojure">
    <java classname="clojure.main">
      <classpath>
        <path location="${build}"/>
        <path location="${src}"/>
        <path location="${clojure.jar}"/>
      </classpath>
      <arg value="-e"/>
      <arg value="(require '(clojure.contrib.datalog.tests [test :as main])) (main/run)"/>
    </java>
  </target>

  <target name="test" depends="test_clojure,test_contrib,test_datalog"
          description="Run all tests"/>

  <target name="check_hasclojure"
          description="Print a warning message if clojure.jar is undefined"
          unless="hasclojure">
    <echo>WARNING: You have not defined a path to clojure.jar so I can't compile files.
      This will cause some parts of clojure.contrib not to work (e.g., pretty print).
      To enable compiling, run "ant -Dclojure.jar=&lt;...path to clojure.jar..&gt;"
    </echo>
  </target>

  <target name="compile_classes" depends="init,check_hasclojure"
          description="Compile the clojure files that have gen-class."
          if="hasclojure">
    <java classname="clojure.lang.Compile">
      <classpath>
        <path location="${build}"/>
        <path location="${src}"/>
        <path location="${clojure.jar}"/>
      </classpath>
      <sysproperty key="clojure.compile.path" value="${build}"/>
      <arg value="clojure.contrib.pprint.ColumnWriter"/>
      <arg value="clojure.contrib.pprint.PrettyWriter"/>
      <arg value="clojure.contrib.fnmap.PersistentFnMap"/>
      <arg value="clojure.contrib.condition.Condition"/>
    </java>
  </target>

  <target name="compile_clojure" depends="init,check_hasclojure"
          description="Compile Clojure sources."
          if="hasclojure">
    <java classname="clojure.lang.Compile">
      <classpath>
        <path location="${build}"/>
        <path location="${src}"/>
        <path location="${clojure.jar}"/>
      </classpath>
      <sysproperty key="clojure.compile.path" value="${build}"/>
      <sysproperty key="java.awt.headless" value="true"/>
      <arg value="clojure.contrib.accumulators"/>
      <arg value="clojure.contrib.agent-utils"/>
      <arg value="clojure.contrib.classpath"/>
      <arg value="clojure.contrib.combinatorics"/>
      <arg value="clojure.contrib.command-line"/>
      <arg value="clojure.contrib.complex-numbers"/>
      <arg value="clojure.contrib.cond"/>
      <arg value="clojure.contrib.condition"/>
      <arg value="clojure.contrib.condt"/>
      <arg value="clojure.contrib.core"/>
      <arg value="clojure.contrib.dataflow"/>
      <arg value="clojure.contrib.datalog"/>
      <arg value="clojure.contrib.datalog.database"/>
      <arg value="clojure.contrib.datalog.literals"/>
      <arg value="clojure.contrib.datalog.magic"/>
      <arg value="clojure.contrib.datalog.rules"/>
      <arg value="clojure.contrib.datalog.softstrat"/>
      <arg value="clojure.contrib.datalog.util"/>
      <arg value="clojure.contrib.def"/>
      <arg value="clojure.contrib.duck-streams"/>
      <arg value="clojure.contrib.error-kit"/>
      <arg value="clojure.contrib.except"/>
      <arg value="clojure.contrib.fcase"/>
      <arg value="clojure.contrib.find-namespaces"/>
      <arg value="clojure.contrib.fnmap"/>
      <arg value="clojure.contrib.gen-html-docs"/>
      <arg value="clojure.contrib.generic"/>
      <arg value="clojure.contrib.generic.arithmetic"/>
      <arg value="clojure.contrib.generic.collection"/>
      <arg value="clojure.contrib.generic.comparison"/>
      <arg value="clojure.contrib.generic.functor"/>
      <arg value="clojure.contrib.generic.math-functions"/>
      <arg value="clojure.contrib.graph"/>
      <arg value="clojure.contrib.greatest-least"/>
      <arg value="clojure.contrib.import-static"/>
      <arg value="clojure.contrib.jar"/>
      <arg value="clojure.contrib.java-utils"/>
      <arg value="clojure.contrib.javadoc.browse"/>
      <arg value="clojure.contrib.javadoc.browse-ui"/>
      <arg value="clojure.contrib.json.read"/>
      <arg value="clojure.contrib.json.write"/>
      <arg value="clojure.contrib.lazy-seqs"/>
      <arg value="clojure.contrib.lazy-xml"/>
      <arg value="clojure.contrib.macro-utils"/>
      <arg value="clojure.contrib.macros"/>
      <arg value="clojure.contrib.map-utils"/>
      <arg value="clojure.contrib.math"/>
      <arg value="clojure.contrib.miglayout"/>
      <arg value="clojure.contrib.miglayout.internal"/>
      <arg value="clojure.contrib.mmap"/>
      <arg value="clojure.contrib.monads"/>
      <arg value="clojure.contrib.ns-utils"/>
      <arg value="clojure.contrib.pprint.ColumnWriter"/>
      <arg value="clojure.contrib.pprint.PrettyWriter"/>
      <arg value="clojure.contrib.pprint"/>
      <arg value="clojure.contrib.pprint.utilities"/>
      <arg value="clojure.contrib.probabilities.finite-distributions"/>
      <arg value="clojure.contrib.probabilities.monte-carlo"/>
      <arg value="clojure.contrib.probabilities.random-numbers"/>
      <arg value="clojure.contrib.prxml"/>
      <arg value="clojure.contrib.repl-ln"/>
      <arg value="clojure.contrib.repl-utils"/>
      <arg value="clojure.contrib.seq-utils"/>
      <arg value="clojure.contrib.server-socket"/>
      <arg value="clojure.contrib.set"/>
      <arg value="clojure.contrib.shell-out"/>
      <arg value="clojure.contrib.singleton"/>
      <arg value="clojure.contrib.sql"/>
      <arg value="clojure.contrib.sql.internal"/>
      <arg value="clojure.contrib.stacktrace"/>
      <arg value="clojure.contrib.str-utils"/>
      <arg value="clojure.contrib.stream-utils"/>
      <arg value="clojure.contrib.swing-utils"/>
      <arg value="clojure.contrib.template"/>
      <arg value="clojure.contrib.test-is"/>
      <arg value="clojure.contrib.test-is.tap"/>
      <arg value="clojure.contrib.trace"/>
      <arg value="clojure.contrib.types"/>
      <arg value="clojure.contrib.walk"/>
      <arg value="clojure.contrib.with-ns"/>
      <arg value="clojure.contrib.zip-filter"/>
      <arg value="clojure.contrib.zip-filter.xml"/>
    </java>
  </target>

  <target name="jar" description="Create jar files." depends="compile_clojure">
    <jar jarfile="${jarfile}">
      <fileset file="epl-v10.html"/>
      <fileset dir="${src}" includes="**/*.clj"/>
      <fileset dir="${build}" includes="**/*.class"/>
      <manifest>
        <attribute name="Class-Path" value="."/>
      </manifest>
    </jar>

    <jar jarfile="${slimjarfile}">
      <fileset file="epl-v10.html"/>
      <fileset dir="${src}" includes="**/*.clj"/>
      <manifest>
        <attribute name="Class-Path" value="."/>
      </manifest>
    </jar>

  </target>

  <target name="-setup-maven" description="Load Maven typedefs, read POM, establish dependencies.">
    <typedef resource="org/apache/maven/artifact/ant/antlib.xml" uri="urn:maven-artifact-ant"/>

    <mvn:pom file="pom.xml" id="contrib.pom"/>

    <mvn:dependencies pomRefId="contrib.pom"/>
  </target>

  <target name="clean-build" depends="clean,compile_clojure,test,jar"
          description="Builds clojure-contrib from scratch and runs all tests."/>

  <target name="ci-build" depends="-setup-maven"
          description="Build clojure-contrib using Clojure obtained via Maven.">
    <antcall target="clean-build">
      <param name="clojure.jar" value="${org.clojure:clojure-lang:jar}"/>
    </antcall>
    <mvn:install file="${jarfile}" pomrefid="contrib.pom">
      <attach file="${slimjarfile}" classifier="slim"/>
    </mvn:install>
  </target>

  <macrodef name="deploy">
    <attribute name="target-dir" description="Root of Maven repository"/>
    <sequential>
      <mvn:deploy file="${jarfile}" pomrefid="contrib.pom">
        <attach file="${slimjarfile}" classifier="slim"/>
        <remoteRepository url="file:@{target-dir}"/>
      </mvn:deploy>
    </sequential>
  </macrodef>

  <target name="nightly-build" depends="ci-build"
          description="Build and deploy to nightly (snapshot) repository.">
    <deploy target-dir="${snapshot.repo.dir}"/>
  </target>

  <target name="stable-build" depends="ci-build" description="Build and deploy to stable repository.">
    <deploy target-dir="${stable.repo.dir}"/>
  </target>

  <target name="dist" depends="jar"
          description="Builds distribution ZIP file.">
    <property name="distdir" value="${dist}/clojure-contrib-${contrib.version.label}"/>
    <mkdir dir="${distdir}"/>
    <copy todir="${distdir}" includeEmptyDirs="false">
      <fileset dir="${basedir}">
        <exclude name="**/.git/**"/>
        <exclude name="**/*.class"/>
      </fileset>
    </copy>
    <zip basedir="${dist}" destfile="${zip}"/>
  </target>
</project>