| 1 |
<?xml version="1.0"?> |
|---|
| 2 |
|
|---|
| 3 |
<!-- =================================================================== |
|---|
| 4 |
This is the build.xml for the caldav client api. |
|---|
| 5 |
|
|---|
| 6 |
On entry we also require the usual global properties. |
|---|
| 7 |
|
|---|
| 8 |
On exit: |
|---|
| 9 |
jar files built for this component |
|---|
| 10 |
|
|---|
| 11 |
Authors: Mike Douglass douglm@rpi.edu |
|---|
| 12 |
=================================================================== --> |
|---|
| 13 |
|
|---|
| 14 |
<project name="caldavClientApi.compile" default="build" > |
|---|
| 15 |
<property name="source.home" location="${org.bedework.caldavClientApi.base}/src"/> |
|---|
| 16 |
<property name="base.name" value="caldavClientApi"/> |
|---|
| 17 |
|
|---|
| 18 |
<target name="init"> |
|---|
| 19 |
<dirname property="this.dir" file="${ant.file}"/> |
|---|
| 20 |
</target> |
|---|
| 21 |
|
|---|
| 22 |
<!-- ================================================================= |
|---|
| 23 |
The "build" target does a build of the caldav component |
|---|
| 24 |
================================================================= --> |
|---|
| 25 |
|
|---|
| 26 |
<target name="build" depends="init" |
|---|
| 27 |
description="Build calendar caldav server"> |
|---|
| 28 |
|
|---|
| 29 |
<!-- ==================== Sources and classes ====================== --> |
|---|
| 30 |
|
|---|
| 31 |
<fileset id="base.java.sources" dir="${source.home}" > |
|---|
| 32 |
<include name="org/bedework/caldav/client/**/*.java"/> |
|---|
| 33 |
</fileset> |
|---|
| 34 |
|
|---|
| 35 |
<patternset id="base.class.patternset"> |
|---|
| 36 |
<include name="org/bedework/caldav/client/**/*.class"/> |
|---|
| 37 |
</patternset> |
|---|
| 38 |
|
|---|
| 39 |
<!-- ==================== Compilation Classpath ==================== --> |
|---|
| 40 |
|
|---|
| 41 |
<path id="compile.classpath"> |
|---|
| 42 |
<pathelement location="${httpclient.jar}"/> |
|---|
| 43 |
<pathelement location="${ical4j.jar}"/> |
|---|
| 44 |
<pathelement location="${log4j.jar}"/> |
|---|
| 45 |
|
|---|
| 46 |
<!-- Include the location of the compiled calendar classes --> |
|---|
| 47 |
<pathelement location="${org.bedework.access.jar}"/> |
|---|
| 48 |
<pathelement location="${org.bedework.http.jar}"/> |
|---|
| 49 |
<pathelement location="${org.bedework.ical.jar}"/> |
|---|
| 50 |
<pathelement location="${org.bedework.calfacadeshared.jar}"/> |
|---|
| 51 |
</path> |
|---|
| 52 |
|
|---|
| 53 |
<property name="build.jar.file" location="${org.bedework.caldavClientApi.jar}" /> |
|---|
| 54 |
|
|---|
| 55 |
<ant antfile="${buildjar}" inheritRefs="true" target="build" /> |
|---|
| 56 |
</target> |
|---|
| 57 |
</project> |
|---|