root/trunk/calendar3/webclient/build.xml

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

Initial import of bedework

Line 
1 <?xml version="1.0"?>
2
3 <!-- ===================================================================
4      This is the build.xml for the calendar user clients.
5
6      Authors: Mike Douglass   douglm@rpi.edu
7      =================================================================== -->
8
9 <project name="webclient.compile" default="build" >
10   <property name="source.home" location="${org.bedework.webclient.base}/src"/>
11   <property name="base.name" value="webclient"/>
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/webclient/*.java"/>
24     </fileset>
25
26     <patternset id="base.class.patternset">
27       <include name="org/bedework/webclient/*.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.access.jar}"/>
40       <pathelement location="${org.bedework.common.jar}"/>
41       <pathelement location="${org.bedework.calenv.jar}"/>
42       <pathelement location="${org.bedework.mail.jar}"/>
43       <pathelement location="${org.bedework.calfacadeshared.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     </path>
49
50     <property name="build.jar.file" location="${org.bedework.webclient.jar}" />
51
52     <ant antfile="${buildjar}" inheritRefs="true" target="build" />
53   </target>
54 </project>
Note: See TracBrowser for help on using the browser.