-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.xml
294 lines (237 loc) · 11.8 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
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
<project name="HttpClient" default="compile" basedir="." xmlns:ivy="antlib:org.apache.ivy.ant">
<!--
"HttpClient" component of the Jakarta Commons Subproject
$Id: build.xml 566065 2007-08-15 08:34:30Z olegk $
author: Remy Maucherat ( mailto:remm@apache.org )
author: Rod Waldhoff ( mailto:rwaldhoff@apache.org )
author: Vincent Massol ( mailto:vmassol@apache.org )
author: dIon Gillard ( mailto:trongus@yahoo.com )
author: Mark Paquette ( mailto:mpaquett@covansys.com )
author: Jeff Dever ( mailto:jsdever@apache.org )
author: Oleg Kalnichevski ( mailto:oleg@ural.ru )
-->
<!-- ========== Properties: Property Files =============================== -->
<property file="${basedir}/build.properties"/> <!-- Component local -->
<property file="${basedir}/../build.properties"/> <!-- Commons local -->
<property file="${user.home}/build.properties"/> <!-- User local -->
<!-- ========== Properties: External Dependencies ========================= -->
<property name="lib.dir" value="./lib"/>
<property name="commons-logging.jar" value="${lib.dir}/commons-logging-1.2.jar"/>
<property name="commons-codec.jar" value="${lib.dir}/commons-codec-1.8.jar"/>
<!-- ========== Properties: Javadoc Properties ========================= -->
<property name="javadoc.j2sdk.link" value="http://java.sun.com/products/jdk/1.2/docs/api/"/>
<property name="javadoc.logging.link" value="http://jakarta.apache.org/commons/logging/apidocs/"/>
<!-- ========== Properties: Component Declarations ======================== -->
<!-- The name of this component -->
<property name="component.name" value="httpclient"/>
<!-- The title of this component -->
<property name="component.title" value="HttpClient Library"/>
<!-- The current version number of this component -->
<property name="component.version" value="3.1"/>
<!-- ========== Properties: Source Directories ============================ -->
<!-- The base directory for component configuration files -->
<property name="conf.home" value="src/conf"/>
<!-- The base directory for component sources -->
<property name="source.home" value="src"/>
<!-- The base directory for documenation -->
<property name="docs.home" value="docs"/>
<!-- ========== Properties: Test Configuration ============================ -->
<!-- The base directory for unit test sources -->
<property name="test.home" value="src/test/java"/>
<property name="test.resources" value="src/test/resources"/>
<!-- The Junit test jarfile -->
<property name="junit.jar" value="${lib.dir}/junit-4.12.jar"/>
<!-- The commons-logging friendly logger class to use for tests -->
<property name="httpclient.test.log" value="org.apache.commons.logging.impl.SimpleLog"/>
<property name="httpclient.test.loglevel" value="warn"/>
<property name="httpclient.test.wire.loglevel" value="warn"/>
<!-- ========== Properties: Destination Directories ======================= -->
<!-- The base directory for compilation targets -->
<property name="build.home" value="target"/>
<!-- The base directory for distribution targets -->
<property name="dist.home" value="dist"/>
<!-- ========== Compiler Defaults ========================================= -->
<!-- Should Java compilations set the 'debug' compiler option? -->
<property name="compile.debug" value="false"/>
<!-- Should Java compilations set the 'deprecation' compiler option? -->
<property name="compile.deprecation" value="true"/>
<!-- Should Java compilations set the 'optimize' compiler option? -->
<property name="compile.optimize" value="true"/>
<!-- Construct compile classpath -->
<path id="compile.classpath">
<pathelement location="${build.home}/classes"/>
<pathelement location="${commons-logging.jar}"/>
<pathelement location="${commons-codec.jar}"/>
</path>
<!-- ========== Test Execution Defaults =================================== -->
<!-- Construct unit test classpath -->
<path id="test.classpath">
<pathelement location="${build.home}/classes"/>
<pathelement location="${build.home}/tests"/>
<pathelement location="${junit.jar}"/>
<pathelement location="${commons-logging.jar}"/>
<pathelement location="${commons-codec.jar}"/>
<pathelement location="${conf.home}"/>
</path>
<!-- Should all tests fail if one does? -->
<property name="test.failonerror" value="true"/>
<!-- The root test to execute -->
<property name="test.runner" value="junit.textui.TestRunner"/>
<property name="test.entry" value="org.apache.commons.httpclient.TestAll"/>
<!-- Ivy -->
<property name="ivy.install.version" value="2.4.0" />
<condition property="ivy.home" value="${env.IVY_HOME}">
<isset property="env.IVY_HOME" />
</condition>
<property name="ivy.home" value="${user.home}/.ant" />
<property name="ivy.jar.dir" value="${ivy.home}/lib" />
<property name="ivy.jar.file" value="${ivy.jar.dir}/ivy.jar" />
<target name="download-ivy" unless="offline">
<mkdir dir="${ivy.jar.dir}"/>
<!-- download Ivy from web site so that it can be used even without any special installation -->
<get src="https://repo1.maven.org/maven2/org/apache/ivy/ivy/${ivy.install.version}/ivy-${ivy.install.version}.jar"
dest="${ivy.jar.file}" usetimestamp="true"/>
</target>
<target name="init-ivy" depends="download-ivy">
<!-- try to load ivy here from ivy home, in case the user has not already dropped
it into ant's lib dir (note that the latter copy will always take precedence).
We will not fail as long as local lib dir exists (it may be empty) and
ivy is in at least one of ant's lib dir or the local lib dir. -->
<path id="ivy.lib.path">
<fileset dir="${ivy.jar.dir}" includes="*.jar"/>
</path>
<taskdef resource="org/apache/ivy/ant/antlib.xml"
uri="antlib:org.apache.ivy.ant" classpathref="ivy.lib.path"/>
</target>
<!-- ========== Targets =================================================== -->
<!-- ========== Targets: "Internal" Targets =============================== -->
<target name="init"
description="Initialize and evaluate conditionals">
<echo message="-------- ${component.title} ${component.version} --------"/>
<filter token="name" value="${component.name}"/>
<filter token="version" value="${component.version}"/>
</target>
<target name="resolve-ivy" depends="init-ivy" description="--> retrieve dependencies with ivy">
<ivy:retrieve />
</target>
<target name="prepare" depends="init"
description="Prepare build directory">
<mkdir dir="${build.home}"/>
<mkdir dir="${build.home}/classes"/>
<mkdir dir="${build.home}/conf"/>
<mkdir dir="${build.home}/docs"/>
<mkdir dir="${build.home}/docs/api"/>
<mkdir dir="${build.home}/tests"/>
<mkdir dir="${build.home}/examples"/>
</target>
<target name="static" depends="prepare"
description="Copy static files to build directory">
<tstamp/>
<copy todir="${build.home}/conf" filtering="on">
<fileset dir="${conf.home}" includes="*.MF"/>
<fileset dir="${conf.home}" includes="*.properties"/>
</copy>
</target>
<!-- ========== Targets: "External" Targets =============================== -->
<target name="dist" depends="compile,doc"
description="Create binary distribution">
<mkdir dir="${dist.home}"/>
<copy file="src/main/resources/META-INF/LICENSE.txt" todir="${dist.home}"/>
<copy file="build.xml" todir="${dist.home}"/>
<copy file="build.properties.sample" todir="${dist.home}"/>
<copy file="README.txt" todir="${dist.home}"/>
<jar jarfile ="${dist.home}/commons-${component.name}.jar"
basedir ="${build.home}/classes"
manifest ="${build.home}/conf/MANIFEST.MF">
<metainf dir="${dist.home}">
<include name="LICENSE.txt"/>
</metainf>
</jar>
<mkdir dir="${dist.home}/src"/>
<copy todir="${dist.home}/src" filtering="on">
<fileset dir="${source.home}"/>
</copy>
</target>
<!-- ========== Targets: "External" Targets: Clean-up ===================== -->
<target name="clean"
description="Clean build and distribution directories">
<delete dir="${build.home}"/>
<delete dir="${dist.home}"/>
</target>
<target name="all" depends="clean,compile"
description="Clean and compile all components"/>
<!-- ========== Targets: "External" Targets: Compilation ================== -->
<target name="compile" depends="static"
description="Compile shareable components">
<javac srcdir ="${source.home}/main/java"
destdir ="${build.home}/classes"
debug ="${compile.debug}"
deprecation ="${compile.deprecation}"
optimize ="${compile.optimize}">
<classpath refid="compile.classpath"/>
</javac>
<javac srcdir ="${source.home}/examples"
destdir ="${build.home}/examples"
debug ="${compile.debug}"
deprecation ="${compile.deprecation}"
optimize ="${compile.optimize}">
<classpath refid="compile.classpath"/>
</javac>
</target>
<target name="compile.tests" depends="compile"
description="Compile unit test cases">
<javac srcdir ="${test.home}"
destdir ="${build.home}/tests"
debug ="${compile.debug}"
deprecation ="${compile.deprecation}"
optimize ="${compile.optimize}">
<classpath refid="test.classpath"/>
</javac>
<copy todir="${build.home}/tests" filtering="on">
<fileset dir="${test.resources}" includes="**/*.properties" />
</copy>
<copy todir="${build.home}/tests" filtering="off">
<fileset dir="${test.resources}" includes="**/*.keystore" />
</copy>
</target>
<!-- ========== Targets: "External" Targets: Testing ====================== -->
<target name="test" depends="compile.tests" if="test.entry"
description="Run all unit test cases">
<java classname="${test.runner}" fork="yes" failonerror="${test.failonerror}">
<jvmarg value="-Dorg.apache.commons.logging.Log=${httpclient.test.log}"/>
<jvmarg value="-Dorg.apache.commons.logging.simplelog.log.org.apache.commons.httpclient=${httpclient.test.loglevel}"/>
<jvmarg value="-Dorg.apache.commons.logging.simplelog.log.httpclient.wire=${httpclient.test.wire.loglevel}"/>
<arg value="${test.entry}"/>
<classpath refid="test.classpath"/>
</java>
</target>
<!-- ========== Targets: "External" Targets: Documenation ================= -->
<target name="doc" depends="javadoc"
description="Create component documentation.">
<mkdir dir="${dist.home}"/>
<mkdir dir="${dist.home}/docs"/>
<copy todir="${dist.home}/docs" filtering="off">
<fileset dir="docs"/>
</copy>
</target>
<target name="javadoc" depends="compile"
description="Create component Javadoc documentation">
<mkdir dir="${dist.home}"/>
<mkdir dir="${dist.home}/docs"/>
<mkdir dir="${dist.home}/docs/api"/>
<javadoc sourcepath ="${source.home}/main/java"
destdir ="${dist.home}/docs/api"
packagenames ="org.apache.commons.*"
author ="true"
protected ="true"
version ="true"
doctitle ="<h1>${component.title}</h1>"
windowtitle ="${component.title} (Version ${component.version})"
bottom ="Copyright (c) 1999-2005 - Apache Software Foundation"
>
<classpath refid="test.classpath"/>
<link href="${javadoc.j2sdk.link}"/>
<link href="${javadoc.logging.link}"/>
</javadoc>
</target>
</project>