root/freebusy/trunk/webclient/build.xml

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

Fix more freebusy aggregator bugs

Line 
1 <?xml version="1.0"?>
2
3 <!-- ===================================================================
4      This is the build.xml for the calendar freebusy user clients.
5
6      Authors: Mike Douglass   douglm@rpi.edu
7      =================================================================== -->
8
9 <project name="fbwebclient.compile" default="build" >
10   <property name="source.home" location="${org.bedework.fbwebclient.base}/src"/>
11   <property name="base.name" value="fbwebclient"/>
12
13   <target name="init">
14     <dirname property="this.dir" file="${ant.file}"/>
15   </target>
16
17   <target name="build"
18           description="Build calendar web client jar">
19
20     <!-- ==================== Sources and classes ====================== -->
21
22     <fileset id="base.java.sources" dir="${source.home}" >
23       <include name="org/bedework/fbaggregator/*.java"/>
24     </fileset>
25
26     <patternset id="base.class.patternset">
27       <include name="org/bedework/fbaggregator/*.class"/>
28     </patternset>
29
30     <!-- ==================== Compilation Classpath ==================== -->
31
32     <path id="compile.classpath">
33       <pathelement location="${ical4j.jar}"/>
34       <pathelement location="${servlet.jar}"/>
35       <pathelement location="${struts.jar}"/>
36       <pathelement location="${log4j.jar}"/>
37
38       <!-- Include the location of the compiled calendar classes -->
39       <pathelement location="${org.bedework.calfacadeshared.jar}"/>
40       <pathelement location="${org.bedework.common.jar}"/>
41       <pathelement location="${org.bedework.calenv.jar}"/>
42       <pathelement location="${org.bedework.caldavClientApi.jar}"/>
43 <!--      <pathelement location="${org.bedework.access.jar}"/>
44       <pathelement location="${org.bedework.calsvci.jar}"/>
45       <pathelement location="${org.bedework.ical.jar}"/>   -->
46       <pathelement location="${org.bedework.appcommon.jar}"/>
47       <pathelement location="${org.bedework.webcommon.jar}"/>
48
49       <pathelement location="${org.bedework.fbclient.jar}"/>
50     </path>
51
52     <property name="build.jar.file" location="${org.bedework.fbaggregator.jar}" />
53
54     <ant antfile="${buildjar}" inheritRefs="true" target="build" />
55   </target>
56 </project>
Note: See TracBrowser for help on using the browser.