blob: ee01de7da592c614aaa71cce9c2fb0133028e818 (
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
|
<?xml version="1.0" encoding="UTF-8"?>
<project name="gitblit" default="main" basedir=".">
<!-- Project Properties -->
<property name="project.jar" value="gitblit.jar" />
<property name="project.mainclass" value="com.gitblit.Launcher" />
<property name="project.build.dir" value="${basedir}/build" />
<property name="project.resources.dir" value="${basedir}/resources" />
<loadproperties srcfile="${basedir}/build.properties" />
<target name="buildinfo">
<!-- build date -->
<tstamp>
<format property="gb.buildDate" pattern="yyyy-MM-dd" />
</tstamp>
<!-- extract Gitblit version number from source code -->
<loadfile property="gb.version" srcfile="${basedir}/src/com/gitblit/Constants.java">
<filterchain>
<linecontains>
<contains value="public static final String VERSION = " />
</linecontains>
<striplinebreaks />
<tokenfilter>
<replacestring from="public static final String VERSION = "" to="" />
<replacestring from="";" to="" />
<trim />
</tokenfilter>
</filterchain>
</loadfile>
<!-- extract JGit version number from source code -->
<loadfile property="jgit.version" srcfile="${basedir}/src/com/gitblit/Constants.java">
<filterchain>
<linecontains>
<contains value="public static final String JGIT_VERSION = " />
</linecontains>
<striplinebreaks />
<tokenfilter>
<replacestring from="public static final String JGIT_VERSION = "" to="" />
<replacestring from="";" to="" />
<trim />
</tokenfilter>
</filterchain>
</loadfile>
<echo>Building Gitblit ${gb.version}</echo>
<property name="distribution.zipfile" value="gitblit-${gb.version}.zip" />
<property name="distribution.warfile" value="gitblit-${gb.version}.war" />
</target>
<!-- Build Gitblit GO -->
<target name="main" description="Compiles Gitblit from source to website" depends="buildinfo">
<!-- copy required distribution files to project folder -->
<copy todir="${basedir}" overwrite="false">
<fileset dir="${basedir}/distrib">
<include name="gitblit.properties" />
<include name="users.properties" />
</fileset>
</copy>
<!-- Compile the build tool and execute it.
This downloads missing compile-time dependencies from Maven. -->
<delete dir="${project.build.dir}" />
<mkdir dir="${project.build.dir}" />
<javac srcdir="${basedir}/src" destdir="${project.build.dir}">
<include name="com/gitblit/Build.java" />
<include name="com/gitblit/BuildWebXml.java" />
<include name="com/gitblit/Constants.java" />
<include name="com/gitblit/utils/StringUtils.java" />
</javac>
<java classpath="${project.build.dir}" classname="com.gitblit.Build" />
<!-- Compile Project -->
<path id="master-classpath">
<fileset dir="${basedir}/ext">
<include name="*.jar" />
</fileset>
</path>
<javac destdir="${project.build.dir}" failonerror="false">
<src path="${basedir}/src" />
<classpath refid="master-classpath" />
</javac>
<copy todir="${project.build.dir}">
<fileset dir="${basedir}/src" excludes="**/*.java,**/thumbs.db" />
</copy>
<!-- Build jar -->
<delete file="${project.jar}" />
<jar jarfile="${project.jar}">
<fileset dir="${project.build.dir}">
<include name="**/*" />
</fileset>
<fileset dir="${project.resources.dir}">
<exclude name="thumbs.db" />
</fileset>
<manifest>
<attribute name="Main-Class" value="${project.mainclass}" />
</manifest>
</jar>
<!-- Build Site -->
<delete dir="${basedir}/site" />
<mkdir dir="${basedir}/site" />
<copy todir="${basedir}/site">
<!-- Copy selected Gitblit resources -->
<fileset dir="${project.resources.dir}">
<include name="background.png" />
<include name="gitblit.css" />
<include name="markdown.css" />
<include name="gitblt_25.png" />
<include name="gitblt-favicon.png" />
<include name="lock_go_16x16.png" />
<include name="lock_pull_16x16.png" />
<include name="shield_16x16.png" />
<include name="cold_16x16.png" />
<include name="bug_16x16.png" />
<include name="book_16x16.png" />
<include name="blank.png" />
</fileset>
<!-- Copy Doc images -->
<fileset dir="${basedir}/docs">
<include name="*.png" />
<include name="*.js" />
</fileset>
</copy>
<!-- Copy Fancybox -->
<mkdir dir="${basedir}/site/fancybox" />
<copy todir="${basedir}/site/fancybox">
<fileset dir="${basedir}/docs/fancybox">
<exclude name="thumbs.db" />
</fileset>
</copy>
<!-- Copy google-code-prettify -->
<mkdir dir="${basedir}/src/com/gitblit/wicket/pages/prettify" />
<copy todir="${basedir}/site/prettify">
<fileset dir="${basedir}/src/com/gitblit/wicket/pages/prettify">
<exclude name="thumbs.db" />
</fileset>
</copy>
<!-- Generate thumbnails of screenshots -->
<java classpath="${project.build.dir}" classname="com.gitblit.Thumbnailer">
<classpath refid="master-classpath" />
<arg value="--sourceFolder" />
<arg value="${basedir}/docs/screenshots" />
<arg value="--destinationFolder" />
<arg value="${basedir}/site/thumbs" />
<arg value="--maximumDimension" />
<arg value="250" />
</java>
<!-- Copy screenshots -->
<mkdir dir="${basedir}/site/screenshots" />
<copy todir="${basedir}/site/screenshots">
<fileset dir="${basedir}/docs/screenshots">
<include name="*.png" />
</fileset>
</copy>
<!-- Build site pages -->
<java classpath="${project.build.dir}" classname="com.gitblit.BuildSite">
<classpath refid="master-classpath" />
<arg value="--sourceFolder" />
<arg value="${basedir}/docs" />
<arg value="--outputFolder" />
<arg value="${basedir}/site" />
<arg value="--pageHeader" />
<arg value="${basedir}/docs/site_header.html" />
<arg value="--pageFooter" />
<arg value="${basedir}/docs/site_footer.html" />
<arg value="--alias" />
<arg value="index=overview" />
<arg value="--alias" />
<arg value="properties=gitblit.properties" />
<arg value="--substitute" />
<arg value="%VERSION%=${gb.version}" />
<arg value="--substitute" />
<arg value="%DISTRIBUTION%=${distribution.zipfile}" />
<arg value="--substitute" />
<arg value="%BUILDDATE%=${gb.buildDate}" />
<arg value="--substitute" />
<arg value="%JGIT%=${jgit.version}" />
<arg value="--load" />
<arg value="%PROPERTIES%=${basedir}/distrib/gitblit.properties" />
</java>
<!-- Delete the deploy folder -->
<delete dir="${basedir}/deploy" />
<!-- Create deployment folder structure -->
<mkdir dir="${basedir}/deploy" />
<copy todir="${basedir}/deploy" file="${project.jar}" />
<copy todir="${basedir}/deploy">
<fileset dir="${basedir}/distrib">
<include name="**/*" />
</fileset>
</copy>
<!-- Build Deployment Docs -->
<mkdir dir="${basedir}/deploy/docs" />
<copy todir="${basedir}/deploy/docs">
<!-- Copy selected Gitblit resources -->
<fileset dir="${project.resources.dir}">
<include name="background.png" />
<include name="gitblit.css" />
<include name="markdown.css" />
<include name="gitblt_25.png" />
<include name="gitblt-favicon.png" />
<include name="lock_go_16x16.png" />
<include name="lock_pull_16x16.png" />
<include name="shield_16x16.png" />
<include name="cold_16x16.png" />
<include name="bug_16x16.png" />
<include name="book_16x16.png" />
<include name="blank.png" />
</fileset>
<!-- Copy Doc images -->
<fileset dir="${basedir}/docs">
<include name="*.png" />
</fileset>
</copy>
<!-- Copy google-code-prettify -->
<mkdir dir="${basedir}/src/com/gitblit/wicket/pages/prettify" />
<copy todir="${basedir}/deploy/docs/prettify">
<fileset dir="${basedir}/src/com/gitblit/wicket/pages/prettify">
<exclude name="thumbs.db" />
</fileset>
</copy>
<!-- Build deployment doc pages -->
<java classpath="${project.build.dir}" classname="com.gitblit.BuildSite">
<classpath refid="master-classpath" />
<arg value="--sourceFolder" />
<arg value="${basedir}/docs" />
<arg value="--outputFolder" />
<arg value="${basedir}/deploy/docs" />
<arg value="--pageHeader" />
<arg value="${basedir}/docs/page_header.html" />
<arg value="--pageFooter" />
<arg value="${basedir}/docs/page_footer.html" />
<arg value="--skip" />
<arg value="screenshots" />
<arg value="--skip" />
<arg value="releases" />
<arg value="--alias" />
<arg value="index=overview" />
<arg value="--alias" />
<arg value="properties=gitblit.properties" />
<arg value="--substitute" />
<arg value="%VERSION%=${gb.version}" />
<arg value="--substitute" />
<arg value="%DISTRIBUTION%=${distribution.zipfile}" />
<arg value="--substitute" />
<arg value="%BUILDDATE%=${gb.buildDate}" />
<arg value="--substitute" />
<arg value="%JGIT%=${jgit.version}" />
<arg value="--load" />
<arg value="%PROPERTIES%=${basedir}/distrib/gitblit.properties" />
</java>
<!-- Create Zip deployment -->
<zip destfile="${distribution.zipfile}">
<fileset dir="${basedir}/deploy">
<include name="**/*" />
</fileset>
</zip>
<!-- Delete the deploy folder -->
<delete dir="${basedir}/deploy" />
<!-- Cleanup builds -->
<delete>
<fileset dir="${basedir}">
<include name="${project.jar}" />
</fileset>
</delete>
<!-- Cleanup -->
<delete dir="${project.build.dir}" />
</target>
<!-- Build Gitblit WAR -->
<target name="buildWAR" description="Build the Gitblit WAR" depends="buildinfo">
<path id="master-classpath">
<fileset dir="${basedir}/ext">
<include name="*.jar" />
</fileset>
</path>
<delete dir="${basedir}/war" />
<mkdir dir="${basedir}/war/WEB-INF/lib"/>
<!-- Gitblit web.xml -->
<java classpath="${project.build.dir}" classname="com.gitblit.BuildWebXml">
<classpath refid="master-classpath" />
</java>
<!-- Gitblit resources -->
<copy todir="${basedir}/war">
<fileset dir="${project.resources.dir}">
<exclude name="thumbs.db" />
</fileset>
</copy>
<!-- Gitblit library dependencies -->
<copy todir="${basedir}/war/WEB-INF/lib">
<fileset dir="${basedir}/ext">
<exclude name="*-sources.jar" />
<exclude name="*-javadoc.jar" />
<exclude name="jcommander*.jar" />
<exclude name="jetty*.jar" />
<exclude name="junit*.jar" />
<exclude name="servlet*.jar" />
</fileset>
</copy>
<!-- Gitblit classes -->
<mkdir dir="${basedir}/war/WEB-INF/classes"/>
<copy todir="${basedir}/war/WEB-INF/classes">
<fileset dir="${basedir}/bin">
<exclude name="WEB-INF/web.xml" />
<exclude name="com/gitblit/tests/" />
<exclude name="com/gitblit/Build*.class" />
<exclude name="com/gitblit/GitBlitServer*.class" />
<exclude name="com/gitblit/Launcher*.class" />
<exclude name="com/gitblit/MakeCertificate*.class" />
<exclude name="com/gitblit/Thumbnailer*.class" />
</fileset>
</copy>
<!-- Build the WAR file -->
<jar basedir="${basedir}/war" destfile="${distribution.warfile}" compress="true" />
</target>
<!-- Publish binaries to github -->
<target name="publishBinaries" description="Publish the Gitblit distribution to Github">
<!-- TODO -->
<!-- https://github.com/oyvindkinsey/GitHubUploadTask -->
</target>
<!-- Publish site to hosting service -->
<!-- You must add ext/commons-net-1.4.0.jar to your ANT classpath. -->
<target name="publishSite" description="Publish the Gitblit site to a webserver (requires ext/commons-net-1.4.0.jar)">
<ftp server="${ftp.server}"
userid="${ftp.user}"
password="${ftp.password}"
remotedir="${ftp.dir}"
passive="true"
verbose="yes">
<fileset dir="${basedir}/site" />
</ftp>
</target>
</project>
|