root/trunk/build.xml

Revision 1043 (checked in by douglm, 7 years ago)

More fixes to restore for 3.2 data

Index data on restore

Added version seq column to BwAuthUser?

Schema change
Add column bwsequence to table auth

Line 
1 <?xml version="1.0"?>
2
3 <!-- This is the ant build file for the bedework uber project.
4
5      Authors: Mike Douglass   douglm @ rpi.edu
6 -->
7
8 <project name="bedework.build" default="usage" basedir=".">
9   <property environment="env"/>
10
11   <!-- this project -->
12   <property name="org.bedework.project.bedework"
13             location="${basedir}" />
14
15   <!-- Where we put other projects -->
16   <property name="org.bedework.projects"
17             location="${org.bedework.project.bedework}/projects" />
18
19   <property name="org.bedework.project.access"
20             location="${org.bedework.projects}/access" />
21
22   <property name="org.bedework.project.bwtools"
23             location="${org.bedework.projects}/bwtools" />
24
25   <property name="org.bedework.project.caldav"
26             location="${org.bedework.projects}/caldav" />
27
28   <property name="org.bedework.project.caldavTest"
29             location="${org.bedework.projects}/caldavTest" />
30
31   <property name="org.bedework.project.calendarapi"
32             location="${org.bedework.projects}/calendarapi" />
33
34   <property name="org.bedework.project.davutil"
35             location="${org.bedework.projects}/davutil" />
36
37   <property name="org.bedework.project.dumprestore"
38             location="${org.bedework.projects}/dumprestore" />
39
40   <property name="org.bedework.project.freebusy"
41             location="${org.bedework.projects}/freebusy" />
42
43   <property name="org.bedework.project.rpiutil"
44             location="${org.bedework.projects}/rpiutil" />
45
46   <property name="org.bedework.project.synchml"
47             location="${org.bedework.projects}/synchml" />
48
49   <property name="org.bedework.project.webapps"
50             location="${org.bedework.projects}/webapps" />
51
52   <property name="org.bedework.project.webdav"
53             location="${org.bedework.projects}/webdav" />
54
55   <target name="README" depends="init"
56           description="Describe targets and their usage">
57     <loadfile property="org.bedework.README"
58               srcFile="${org.bedework.project.bedework}/docs/README"/>
59     <echo message="${org.bedework.README}" />
60   </target>
61
62   <target name="usage" depends="init"
63           description="Describe targets and their usage">
64     <echo message="As distributed the package should be ready to go."/>
65     <echo message="Ensure ant is on your path, (a version is in the" />
66     <echo message="package)"/>
67     <echo message=""/>
68     <echo message="First in one window do"/>
69     <echo message="    ant hsqldb"/>
70     <echo message="This will start the hsqldb server ready for the "/>
71     <echo message="application."/>
72     <echo message=""/>
73     <echo message="In another window do"/>
74     <echo message="    ant tomcatstart"/>
75     <echo message=""/>
76     <echo message="Once tomcat is running you should be able to go to a"/>
77     <echo message="browser and connect to"/>
78     <echo message="    http://localhost:8080/bedework"/>
79     <echo message="and follow the instructions."/>
80     <echo message=""/>
81     <echo message="To build the calendar do"/>
82     <echo message="    ant deploy    or "/>
83     <echo message="    ant deploy.debug "/>
84     <echo message="which does a build and deploy of all components"/>
85     <echo message=""/>
86     <echo message="To rebuild the calendar do"/>
87     <echo message="    ant clean.deploy    or "/>
88     <echo message="    ant clean.deploy.debug "/>
89     <echo message="which does a clean, build and deploy of all components"/>
90     <echo message=""/>
91     <echo message="See documentation in the docs directory or on bedework.org"/>
92     <echo message="for instructions on creating a locally configured calendar application"/>
93     <echo message=""/>
94   </target>
95
96   <target name="init" >
97     <property name="org.bedework.qs.build.synchml" value="yes" />
98
99     <!-- Overriding this when invoking ant allows different user property
100          files to be included e.g.
101             ant -Dorg.bedework.user.build.properties=/home/me/bedework.properties ...
102             -->
103     <property name="org.bedework.user.build.properties"
104               location="${user.home}/bedework.build.properties" />
105
106     <echo message="Load user properties from ${org.bedework.user.build.properties}" />
107
108     <!-- Load user property definition overrides -->
109     <property file="${org.bedework.user.build.properties}" />
110
111     <!-- ===============================================================
112               Default properties.
113          =============================================================== -->
114
115     <property name="project.home" location="${org.bedework.project.bedework}"/>
116
117     <property file="${project.home}/build.properties" />
118
119     <property name="project.name" value="${org.bedework.package.name}"/>
120     <property name="project.version" value="${org.bedework.version}"/>
121
122     <property name="dist.home" location="${project.home}/dist"/>
123     <property name="lib.dir" location="${project.home}/lib"/>
124     <property name="bin.home" location="${project.home}/bin"/>
125
126     <property name="build.dir" location="${project.home}/build"/>
127     <property name="buildjar" location="${build.dir}/buildjar.xml"/>
128     <property name="buildsh" location="${build.dir}/buildsh.xml"/>
129     <property name="buildwar" location="${build.dir}/buildwar.xml"/>
130
131     <property name="org.bedework.build.caldav" value="yes" />
132
133     <condition property="org.bedework.qs.build.caldav">
134       <equals arg1="yes" arg2="${org.bedework.build.caldav}"/>
135     </condition>
136
137     <property name="org.bedework.build.freebusy" value="no" />
138
139     <condition property="org.bedework.qs.build.freebusy">
140       <equals arg1="yes" arg2="${org.bedework.build.freebusy}"/>
141     </condition>
142
143     <mkdir dir="${dist.home}" />
144
145     <mkdir dir="${bin.home}" />
146
147     <property name="org.bedework.empty.dir"
148               location="${dist.home}/empty-dir" />
149     <mkdir dir="${org.bedework.empty.dir}" />
150
151     <fileset id="empty.fileset" dir="${org.bedework.empty.dir}"
152              excludes="*" />
153     <!-- default to empty -->
154     <fileset id="base.resource.files" refid="empty.fileset" />
155
156     <!-- ==================== Subcomponent Compilation Classpath ==================== -->
157
158     <path id="compile.classpath">
159       <fileset dir="${lib.dir}">
160          <include name="*.jar"/>
161       </fileset>
162       <fileset dir="${dist.home}">
163          <include name="*.jar"/>
164       </fileset>
165     </path>
166
167     <!-- ===============================================================
168               Locations and jar files built by this project.
169          =============================================================== -->
170
171     <property name="org.bedework.temp.dir"
172               location="${dist.home}/temp" />
173
174     <property name="org.bedework.temp.wars.home"
175               location="${org.bedework.temp.dir}/wars" />
176
177     <property name="org.bedework.temp.shellscr.home"
178               location="${org.bedework.temp.dir}/shellscr" />
179
180     <property name="org.bedework.config.base"
181               location="${org.bedework.project.bedework}/config" />
182
183     <property name="org.bedework.default.lib"
184               location="${org.bedework.project.bedework}/lib" />
185
186     <property name="org.bedework.deployment.base"
187               location="${org.bedework.project.bedework}/deployment" />
188
189     <property name="org.bedework.deployutil.jar"
190               location="${bin.home}/${org.bedework.deployutil.jar.name}-${project.version}.jar" />
191
192     <!-- ===============================================================
193               Default properties.
194          =============================================================== -->
195     <property file="${org.bedework.defaultdefs.properties}" />
196   </target>
197
198   <!-- =================================================================
199        "build" and "clean" targets for the project - does not build
200        subsidiary projects like rpiutil and access
201        ================================================================= -->
202
203   <target name="build" depends="init,build.rpiutil,build.access,build.davutil,
204                                 build.calendarapi,build.dumprestore,build.synchml.if,
205                                 build.webdav.if,build.caldav.if,build.caldavTest.if,
206                                 build.freebusy.if,build.bwtools,build.webapps,
207                                 build.deployutil"
208           description="builds the project"/>
209
210   <target name="clean" depends="init,clean.rpiutil,clean.access,clean.davutil,
211                                 clean.calendarapi,clean.dumprestore,clean.synchml.if,
212                                 clean.webdav.if,clean.caldav.if,clean.caldavTest.if,
213                                 clean.freebusy.if,clean.bwtools,clean.webapps"
214           description="Remove all generated files.">
215     <delete dir="${dist.home}" />
216     <delete dir="${bin.home}" />
217   </target>
218
219   <target name="quickstart-clean" depends="init,clean.rpiutil,clean.access,clean.davutil,
220                                            clean.calendarapi,clean.dumprestore,clean.synchml.if,
221                                            clean.webdav.if,clean.caldav.if,clean.caldavTest.if,
222                                            clean.freebusy.if,clean.bwtools,clean.webapps"
223           description="partial clean up for quickstart.">
224     <delete dir="${bin.home}" />
225     <delete dir="${org.bedework.temp.dir}" />
226     <delete dir="${org.bedework.empty.dir}" />
227
228     <delete>
229       <fileset dir="${dist.home}" includes="*.war"/>
230     </delete>
231   </target>
232
233   <target name="clean.build" depends="clean, build"
234           description="cleans then builds the project"/>
235
236   <!-- =================================================================
237        The "deploy" and "deploy.all" target builds and deploys the applications
238        ================================================================= -->
239
240   <target name="deploy.debug" depends="build"
241           description="builds and deploys the applications">
242     <ant antfile="${org.bedework.project.bedework}/deployment/build.xml" inheritrefs="true"
243          target="deploy"  >
244       <property name="app.debug.val" value="9" />
245     </ant>
246   </target>
247
248   <target name="deploy" depends="build"
249           description="builds and deploys the applications">
250     <ant antfile="${org.bedework.project.bedework}/deployment/build.xml" inheritrefs="true"
251          target="deploy" />
252   </target>
253
254   <!-- =================================================================
255        The "clean.deploy" target cleans, builds and deploys the applications
256        ================================================================= -->
257
258   <target name="clean.deploy" depends="clean,deploy" />
259
260   <target name="clean.deploy.debug" depends="clean,deploy.debug" />
261
262   <!-- =================================================================
263        The "build.configured" target builds configured applications
264        ================================================================= -->
265
266   <target name="build.configured" depends="build"
267           description="Build configured applications" >
268     <ant antfile="${org.bedework.project.bedework}/deployment}/build.xml" inheritrefs="true"
269          target="build.configured"  >
270       <property name="app.debug.val" value="9" />
271     </ant>
272   </target>
273
274   <target name="build.configured.debug" depends="build"
275           description="Build configured applications" >
276     <ant antfile="${org.bedework.project.bedework}/deployment}/build.xml" inheritrefs="true"
277          target="build.configured" />
278   </target>
279
280   <target name="clean.build.configured" depends="clean,build.configured" />
281
282   <target name="clean.build.configured.debug" depends="clean,build.configured.debug"/>
283
284   <!-- =================================================================
285        Targets to build sub-projects and copy the results into dependent
286        libraries. Each sub-project generates a libapi directory which
287        contains the public api for that project.
288        ================================================================= -->
289
290   <!-- .................................................................
291                           access
292        .................................................................. -->
293   <target name="build.access" depends="init"
294           description="builds the access project">
295     <ant antfile="${org.bedework.project.access}/build.xml" inheritall="false"
296            target="build-all" />
297
298     <copy-to-dependent this="${org.bedework.project.access}"
299                        target="${org.bedework.project.caldav}" />
300     <copy-to-dependent this="${org.bedework.project.access}"
301                        target="${org.bedework.project.calendarapi}" />
302     <copy-to-dependent this="${org.bedework.project.access}"
303                        target="${org.bedework.project.davutil}" />
304     <copy-to-dependent this="${org.bedework.project.access}"
305                        target="${org.bedework.project.dumprestore}" />
306     <copy-to-dependent this="${org.bedework.project.access}"
307                        target="${org.bedework.project.webapps}" />
308     <copy-to-dependent this="${org.bedework.project.access}"
309                        target="${org.bedework.project.webdav}" />
310
311     <copy-to-bin this="${org.bedework.project.access}"/>
312   </target>
313
314   <target name="clean.access" depends="init"
315           description="cleans the access project">
316     <ant antfile="${org.bedework.project.access}/build.xml" inheritall="false"
317            target="clean" />
318   </target>
319
320   <target name="clean.build.access" depends="clean.access,build.access"
321           description="builds the access project"/>
322
323   <!-- .................................................................
324                           bwtools
325        .................................................................. -->
326   <target name="build.bwtools" depends="init"
327           description="builds the bwtools project">
328     <ant antfile="${org.bedework.project.bwtools}/build.xml" inheritall="false"
329            target="build-all" />
330
331     <copy-to-bin this="${org.bedework.project.bwtools}"/>
332   </target>
333
334   <target name="clean.bwtools" depends="init"
335           description="clean the bwtools project">
336     <ant antfile="${org.bedework.project.bwtools}/build.xml" inheritall="false"
337            target="clean" />
338   </target>
339
340   <target name="clean.build.bwtools" depends="clean.bwtools,build.bwtools"
341           description="builds the bwtools project"/>
342
343   <!-- .................................................................
344                           caldav
345        .................................................................. -->
346   <target name="build.caldav" depends="init"
347           description="builds the caldav project">
348     <ant antfile="${org.bedework.project.caldav}/build.xml" inheritall="false"
349            target="build-all" />
350
351     <copy-to-bin this="${org.bedework.project.caldav}"/>
352   </target>
353
354   <target name="clean.caldav" depends="init"
355           description="clean the caldav project">
356     <ant antfile="${org.bedework.project.caldav}/build.xml" inheritall="false"
357            target="clean" />
358   </target>
359
360   <target name="clean.build.caldav" depends="clean.caldav,build.caldav"
361           description="clean builds the caldav project"/>
362
363   <target name="build.caldav.if" depends="init"
364           description="builds the jars" if="org.bedework.qs.build.caldav" >
365     <antcall inheritrefs="true" target="build.caldav" />
366   </target>
367
368   <target name="clean.caldav.if" depends="init"
369           description="cleans jars" if="org.bedework.qs.build.caldav" >
370     <antcall inheritrefs="true" target="clean.caldav" />
371   </target>
372
373   <!-- .................................................................
374                           caldavTest
375        .................................................................. -->
376   <target name="build.caldavTest" depends="init"
377           description="builds the caldavTest project">
378     <ant antfile="${org.bedework.project.caldavTest}/build.xml" inheritall="false"
379            target="build-all" />
380
381     <copy-to-bin this="${org.bedework.project.caldavTest}"/>
382   </target>
383
384   <target name="clean.caldavTest" depends="init"
385           description="clean the caldavTest project">
386     <ant antfile="${org.bedework.project.caldavTest}/build.xml" inheritall="false"
387            target="clean" />
388   </target>
389
390   <target name="clean.build.caldavTest" depends="clean.caldavTest,build.caldavTest"
391           description="clean builds the caldavTest project"/>
392
393   <target name="build.caldavTest.if" depends="init"
394           description="builds the jars" if="org.bedework.qs.build.caldav" >
395     <antcall inheritrefs="true" target="build.caldavTest" />
396   </target>
397
398   <target name="clean.caldavTest.if" depends="init"
399           description="cleans jars" if="org.bedework.qs.build.caldav" >
400     <antcall inheritrefs="true" target="clean.caldavTest" />
401   </target>
402
403   <!-- .................................................................
404                           calendarapi
405        .................................................................. -->
406   <target name="build.calendarapi" depends="init"
407           description="builds the calendar project">
408     <ant antfile="${org.bedework.project.calendarapi}/build.xml" inheritall="false"
409            target="build-all" />
410
411     <copy-to-dependent this="${org.bedework.project.calendarapi}"
412                        target="${org.bedework.project.caldav}" />
413     <copy-to-dependent this="${org.bedework.project.calendarapi}"
414                        target="${org.bedework.project.dumprestore}" />
415     <copy-special-to-dependent this="${org.bedework.project.calendarapi}"
416                        target="${org.bedework.project.dumprestore}"
417                        prefix="bw-calcore" />
418     <copy-special-to-dependent this="${org.bedework.project.calendarapi}"
419                        target="${org.bedework.project.dumprestore}"
420                        prefix="bw-calsvc" />
421     <copy-to-dependent this="${org.bedework.project.calendarapi}"
422                        target="${org.bedework.project.freebusy}" />
423     <copy-to-dependent this="${org.bedework.project.calendarapi}"
424                        target="${org.bedework.project.synchml}" />
425     <copy-to-dependent this="${org.bedework.project.calendarapi}"
426                        target="${org.bedework.project.webapps}" />
427
428     <copy-to-bin this="${org.bedework.project.calendarapi}"/>
429   </target>
430
431   <target name="clean.calendarapi" depends="init"
432           description="clean the calendar project">
433     <ant antfile="${org.bedework.project.calendarapi}/build.xml" inheritall="false"
434            target="clean" />
435   </target>
436
437   <target name="clean.build.calendarapi" depends="clean.calendarapi,build.calendarapi"
438           description="clean builds the caldavTest project"/>
439
440   <!-- .................................................................
441                           davutil
442        .................................................................. -->
443   <target name="build.davutil" depends="init"
444           description="builds the davutil project">
445     <ant antfile="${org.bedework.project.davutil}/build.xml" inheritall="false"
446            target="build-all" />
447
448     <copy-to-dependent this="${org.bedework.project.davutil}"
449                        target="${org.bedework.project.caldav}" />
450     <copy-to-dependent this="${org.bedework.project.davutil}"
451                        target="${org.bedework.project.caldavTest}" />
452     <copy-to-dependent this="${org.bedework.project.davutil}"
453                        target="${org.bedework.project.calendarapi}" />
454     <copy-to-dependent this="${org.bedework.project.davutil}"
455                        target="${org.bedework.project.freebusy}" />
456     <copy-to-dependent this="${org.bedework.project.davutil}"
457                        target="${org.bedework.project.webapps}" />
458     <copy-to-dependent this="${org.bedework.project.davutil}"
459                        target="${org.bedework.project.webdav}" />
460
461     <copy-to-bin this="${org.bedework.project.davutil}"/>
462   </target>
463
464   <target name="clean.davutil" depends="init"
465           description="cleans the davutil project">
466     <ant antfile="${org.bedework.project.davutil}/build.xml" inheritall="false"
467            target="clean" />
468   </target>
469
470   <target name="clean.build.davutil" depends="clean.davutil,build.davutil"
471           description="clean builds the davutil project"/>
472
473   <!-- .................................................................
474                           dumprestore
475        .................................................................. -->
476   <target name="build.dumprestore" depends="init"
477           description="builds the dumprestore project">
478     <ant antfile="${org.bedework.project.dumprestore}/build.xml" inheritall="false"
479            target="build-all" />
480
481     <copy-to-bin this="${org.bedework.project.dumprestore}"/>
482   </target>
483
484   <target name="clean.dumprestore" depends="init"
485           description="clean the dumprestore project">
486     <ant antfile="${org.bedework.project.dumprestore}/build.xml" inheritall="false"
487            target="clean" />
488   </target>
489
490   <target name="clean.build.dumprestore" depends="clean.dumprestore,build.dumprestore"
491           description="builds the dumprestore project"/>
492
493   <!-- .................................................................
494                           freebusy
495        .................................................................. -->
496   <target name="build.freebusy" depends="init"
497           description="builds the freebusy project">
498     <ant antfile="${org.bedework.project.freebusy}/build.xml" inheritall="false"
499            target="build-all" />
500
501     <copy-to-bin this="${org.bedework.project.freebusy}"/>
502   </target>
503
504   <target name="clean.freebusy" depends="init"
505           description="cleans the freebusy project">
506     <ant antfile="${org.bedework.project.freebusy}/build.xml" inheritall="false"
507            target="clean" />
508   </target>
509
510   <target name="clean.build.freebusy" depends="clean.freebusy,build.freebusy"
511           description="builds the freebusy project"/>
512
513   <target name="build.freebusy.if" depends="init"
514           description="builds the jars" if="org.bedework.qs.build.freebusy" >
515     <antcall inheritrefs="true" target="build.freebusy" />
516   </target>
517
518   <target name="clean.freebusy.if" depends="init" if="org.bedework.qs.build.freebusy" >
519   </target>
520
521   <!-- .................................................................
522                           rpiutil
523        .................................................................. -->
524   <target name="build.rpiutil" depends="init"
525           description="builds the rpiutil project">
526     <ant antfile="${org.bedework.project.rpiutil}/build.xml" inheritall="false"
527            target="build-all" />
528
529     <copy-to-dependent this="${org.bedework.project.rpiutil}"
530                        target="${org.bedework.project.access}" />
531     <copy-to-dependent this="${org.bedework.project.rpiutil}"
532                        target="${org.bedework.project.caldav}" />
533     <copy-to-dependent this="${org.bedework.project.rpiutil}"
534                        target="${org.bedework.project.calendarapi}" />
535     <copy-to-dependent this="${org.bedework.project.rpiutil}"
536                        target="${org.bedework.project.davutil}" />
537     <copy-to-dependent this="${org.bedework.project.rpiutil}"
538                        target="${org.bedework.project.dumprestore}" />
539     <copy-to-dependent this="${org.bedework.project.rpiutil}"
540                        target="${org.bedework.project.freebusy}" />
541     <copy-to-dependent this="${org.bedework.project.rpiutil}"
542                        target="${org.bedework.project.webapps}" />
543     <copy-to-dependent this="${org.bedework.project.rpiutil}"
544                        target="${org.bedework.project.webdav}" />
545
546     <copy-to-bin this="${org.bedework.project.rpiutil}"/>
547   </target>
548
549   <target name="clean.rpiutil" depends="init"
550           description="cleans the rpiutil project">
551     <ant antfile="${org.bedework.project.rpiutil}/build.xml" inheritall="false"
552            target="clean" />
553   </target>
554
555   <target name="clean.build.rpiutil" depends="clean.rpiutil,build.rpiutil"
556           description="builds the rpiutil project"/>
557
558   <!-- .................................................................
559                           synchml
560        .................................................................. -->
561   <target name="build.synchml" depends="init"
562           description="builds the synchml project">
563     <ant antfile="${org.bedework.project.synchml}/build.xml" inheritall="false"
564            target="build-all" />
565
566     <copy-to-bin this="${org.bedework.project.synchml}"/>
567   </target>
568
569   <target name="clean.synchml" depends="init"
570           description="clean the synchml project">
571     <ant antfile="${org.bedework.project.synchml}/build.xml" inheritall="false"
572            target="clean" />
573   </target>
574
575   <target name="clean.build.synchml" depends="clean.synchml,clean.synchml"
576           description="builds the synchml project"/>
577
578   <target name="build.synchml.if" depends="init"
579           description="builds the jars" if="org.bedework.qs.build.synchml" >
580     <antcall inheritrefs="true" target="build.synchml" />
581   </target>
582
583   <target name="clean.synchml.if" depends="init"
584           description="cleans jars" if="org.bedework.qs.build.synchml" >
585     <antcall inheritrefs="true" target="clean.synchml" />
586   </target>
587
588   <!-- .................................................................
589                           webapps
590        .................................................................. -->
591   <target name="build.webapps" depends="init"
592           description="builds the webapps project">
593     <ant antfile="${org.bedework.project.webapps}/build.xml" inheritall="false"
594            target="build-all" />
595
596     <copy-to-bin this="${org.bedework.project.webapps}"/>
597   </target>
598
599   <target name="clean.webapps" depends="init"
600           description="clean the webapps project">
601     <ant antfile="${org.bedework.project.webapps}/build.xml" inheritall="false"
602            target="clean" />
603   </target>
604
605   <target name="clean.build.webapps" depends="clean.webapps,build.webapps"
606           description="builds the webapps project"/>
607
608   <!-- .................................................................
609                           webdav
610        .................................................................. -->
611   <target name="build.webdav" depends="init"
612           description="builds the webdav project">
613     <ant antfile="${org.bedework.project.webdav}/build.xml" inheritall="false"
614            target="build-all" />
615
616     <copy-to-dependent this="${org.bedework.project.webdav}"
617                        target="${org.bedework.project.caldav}" />
618
619     <copy-to-bin this="${org.bedework.project.webdav}"/>
620   </target>
621
622   <target name="clean.webdav" depends="init"
623           description="cleans the webdav project">
624     <ant antfile="${org.bedework.project.webdav}/build.xml" inheritall="false"
625            target="clean" />
626   </target>
627
628   <target name="clean.build.webdav" depends="clean.webdav,build.webdav"
629           description="builds the webdav project"/>
630
631   <target name="build.webdav.if" depends="init"
632           description="builds the jars" if="org.bedework.qs.build.caldav" >
633     <antcall inheritrefs="true" target="build.webdav" />
634   </target>
635
636   <target name="clean.webdav.if" depends="init"
637           description="cleans jars" if="org.bedework.qs.build.caldav" >
638     <antcall inheritrefs="true" target="clean.webdav" />
639   </target>
640
641   <!-- =================================================================
642        Targets to build sub-components of this project.
643        ================================================================= -->
644
645   <target name="build.deployutil" depends="init"
646           description="builds the deployutil component">
647     <ant antfile="${org.bedework.project.bedework}/deployutil/build.xml" inheritrefs="true"
648            target="build" >
649       <property name="build.jar.file" location="${org.bedework.deployutil.jar}" />
650     </ant>
651   </target>
652
653   <!-- =================================================================
654        Build and run the unit test suite
655        ================================================================= -->
656
657   <target name="bld.test" depends="init"
658           description="Build and run tests">
659     <ant antfile="${calendar.build.file}" inheritrefs="true"
660          target="bld.test" />
661   </target>
662
663   <target name="run.test" depends="init"
664           description="Build and run tests">
665     <ant antfile="${calendar.build.file}" inheritrefs="true"
666          target="run.test" />
667   </target>
668
669   <target name="run.test.debug" depends="init"
670           description="Build and run tests">
671     <ant antfile="${calendar.build.file}" inheritrefs="true"
672          target="run.test"  >
673       <property name="org.bedework.debug" value="yes" />
674     </ant>
675   </target>
676
677   <!-- Rebuild the http test suite only -->
678   <target name="httptest" depends="init"
679           description="Run httptest suite" >
680     <input message="httptest may destroy this calendar db. Proceed with test"
681            validargs="y,n"
682            addproperty="do.httptest" />
683     <condition property="do.abort">
684       <equals arg1="n" arg2="${do.httptest}"/>
685     </condition>
686     <fail if="do.abort">httptest aborted by user.</fail>
687
688     <ant antfile="${calendar.build.file}" inheritrefs="true"
689            target="bld.httptest" />
690
691     <ant antfile="${calendar.build.file}" inheritrefs="true"
692            target="run.httptest" />
693   </target>
694
695   <!-- ======================== javadoc target =======================
696        ================================================================= -->
697
698   <target name="javadoc" depends="init"
699           description="Generate javadoc">
700     <echo message="*************** Needs to do javadoc for all sub-projects and" />
701     <echo message="*************** link them in some way." />
702   </target>
703
704   <!-- =============================================================================
705        Update dependent project (target) from a project just built (this)
706        with a special library (i.e. not one in libapi
707        ============================================================================= -->
708   <macrodef name="copy-special-to-dependent">
709     <attribute name="target"/>
710     <attribute name="this"/>
711     <attribute name="fromdir" default="dist"/>
712     <attribute name="prefix" />
713     <sequential>
714       <copy todir="@{target}/lib" overwrite="yes">
715         <fileset dir="@{this}/@{fromdir}">
716           <include name="@{prefix}*.jar" />
717         </fileset>
718       </copy>
719     </sequential>
720   </macrodef>
721
722   <!-- =============================================================================
723        Update dependent project (target) from a project just built (this).
724        ============================================================================= -->
725   <macrodef name="copy-to-dependent">
726     <attribute name="target"/>
727     <attribute name="this"/>
728     <attribute name="fromdir" default="libapi"/>
729     <sequential>
730       <copy todir="@{target}/lib" overwrite="yes">
731         <fileset dir="@{this}/@{fromdir}">
732           <include name="*.jar" />
733         </fileset>
734       </copy>
735     </sequential>
736   </macrodef>
737
738   <!-- =============================================================================
739        Copy from a project just built (this) into bedework bin directory.
740        ============================================================================= -->
741   <macrodef name="copy-to-bin">
742     <attribute name="this"/>
743     <sequential>
744       <copy todir="${org.bedework.project.bedework}/bin" overwrite="yes">
745         <fileset dir="@{this}/dist">
746           <include name="*.jar" />
747         </fileset>
748       </copy>
749     </sequential>
750   </macrodef>
751 </project>
Note: See TracBrowser for help on using the browser.