root/freebusy/trunk/webclient/build.xml

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

Fixes to freebusy aggregator

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       <pathelement location="${org.bedework.rpiutil.jar}"/>
39
40       <!-- Include the location of the compiled calendar classes -->
41       <pathelement location="${org.bedework.calfacadeshared.jar}"/>
42       <pathelement location="${org.bedework.calenv.jar}"/>
43       <pathelement location="${org.bedework.caldavClientApi.jar}"/>
44 <!--      <pathelement location="${org.bedework.access.jar}"/>
45       <pathelement location="${org.bedework.calsvci.jar}"/>
46       <pathelement location="${org.bedework.ical.jar}"/>   -->
47       <pathelement location="${org.bedework.appcommon.jar}"/>
48       <pathelement location="${org.bedework.webcommon.jar}"/>
49
50       <pathelement location="${org.bedework.fbclient.jar}"/>
51     </path>
52
53     <property name="build.jar.file" location="${org.bedework.fbaggregator.jar}" />
54
55     <ant antfile="${buildjar}" inheritRefs="true" target="build" />
56   </target>
57 </project>
Note: See TracBrowser for help on using the browser.