aboutsummaryrefslogtreecommitdiff
path: root/build.xml
blob: 16072d1ced58bf3e746ed3c63ce43932e181ff61 (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
<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.1.0-RC3"/>
  <property name="zip" location="clojure-contrib-${contrib.version.label}.zip"/>
  <property file="local.properties"/>

  <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 build.clojure.org -->
  <property name="snapshot.repo.dir" location="/srv/www/snapshots"/>
  <property name="stable.repo.dir" location="/srv/www/releases"/>

  <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_contrib"
          description="Run contrib tests"
          if="hasclojure">
    <java classname="clojure.main" fork="true">
      <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)"/>
      <jvmarg value="-Djava.security.policy=config/jmx.policy"/>
    </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_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"/>
      <arg value="clojure.contrib.jmx.Bean"/>
    </java>
  </target>

  <target name="compile_clojure" depends="init,check_hasclojure,compile_classes"
          description="Compile Clojure sources."
          if="hasclojure">

    <!-- Seek out the namespaces to compile. Note that this will fail if the actual name of a package includes an underscore, as
    all underscores are converted to dashes. -->
    <echo>Locating namespaces to compile ...</echo>

    <pathconvert pathsep=" " property="compile.namespaces">
      <fileset dir="${src}" includes="**/*.clj">
        <!-- TODO: Seperate out the source into at least three root folders: one for namespaces with :gen-class, one for
             ordinary namespaces (to be AOT compiled) and one for test namespaces (which, perhaps, should not be included
             in the packaged JAR). 
             Complicated exclude rules like this are a bad design smell for the build.xml and/or project layout.
             -->
        <exclude name="**/*_test.clj" />
        <exclude name="**/test_*/**" />
        <exclude name="clojure/contrib/javadoc.clj" />
        <exclude name="clojure/contrib/jmx/*.clj" />
        <exclude name="**/pprint/**"/>
        <exclude name="**/with_pull.clj" />
        <exclude name="**/examples*/**" />
        <exclude name="**/PersistentFnMap.clj" />
        <exclude name="**/Condition.clj" />
        <exclude name="**/Bean.clj" />
        <exclude name="**/repl_utils/javadoc.clj"/>
        <exclude name="clojure/contrib/load_all.clj"/>
        <exclude name="**/tests.clj"/>
        <exclude name="clojure/contrib/logging.clj"/>
      </fileset>
      <chainedmapper>
        <packagemapper from="${src}/*.clj" to="*" />
        <filtermapper>
          <replacestring from="_" to="-" />
        </filtermapper>
      </chainedmapper>
    </pathconvert>

    <echo>Compiling Clojure namespaces ...</echo>
    <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 line="${compile.namespaces}" />
    </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>