root/trunk/deployment/usercalws/webapp/build.xml

Revision 2999 (checked in by douglm, 3 years ago)

Changes to support ACCEPT header on GET

  • Will enable fetching of calendars and address books when targeting collections
  • Will be used by new web service to get XRD objects

Changes to XmlEmit? to support better abbreviating of namespaces and better handling of default namespace. Also changes to handle some new xrd needs.

CalDAV server has partial support for CalWS - supports GET of XRD object.

Line 
1 <?xml version="1.0"?>
2
3 <!-- ===================================================================
4      Default personal caldav servlet deployer
5      =================================================================== -->
6
7 <project name="bwusercaldav.deploy" default="deploy" >
8   <import file="${org.bedework.deployment.base}/deployprops.xml" />
9
10   <import file="${build.dir}/platforms/${org.bedework.global.deploy.platform}War.xml" />
11
12   <dirname property="this.dir" file="${ant.file}"/>
13
14   <import file="${this.dir}/appjars.xml" />
15
16   <target name="init" >
17     <getExtraJars />
18
19     <property name="app.war.file"
20               location="${dist.home}/${propval.app.war.name}.war" />
21
22     <property name="app.sou.dir" location="${org.bedework.deploy.app.sou}" />
23
24     <!-- Properties that differ from the personal client -->
25     <!--
26     <property name="app.web.xml"
27               value="${app.sou.dir}/war/WEB-INF/web.xml" />
28               -->
29   </target>
30
31   <!-- =================================================================
32        The "deploy" target first builds a configured component then copies
33        all required files to the appropriate servlet container directories.
34
35        Currently this only works for the quickstart distribution.
36        For example, it does not handle deploying into jboss and copying
37        resource files (images, stylesheets) to external locations.
38        ================================================================= -->
39
40   <target name="deploy" depends="init,build.configured" >
41     <!-- Platform specific -->
42     <antcall target="deployWar" inheritRefs="true" />
43   </target>
44
45   <target name="build.configured" depends="init" >
46     <!-- ===============================================================
47          Build the war
48          =============================================================== -->
49
50     <ant antfile="${buildwar}" inheritRefs="true" target="build" />
51   </target>
52 </project>
Note: See TracBrowser for help on using the browser.