xlawrence 2004/12/17 17:03:37 CET
Modified files:
. build.xml
Log:
updated build file
Revision Changes Path
1.14 +6 -9 uwcal_JSR168/build.xml
http://jahia.mine.nu:8080/cgi-bin/cvsweb.cgi/uwcal_JSR168/build.xml.diff?r1=1.13&r2=1.14&f=h
Index: build.xml
===================================================================
RCS file: /home/cvs/repository/uwcal_JSR168/build.xml,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- build.xml 17 Dec 2004 15:47:25 -0000 1.13
+++ build.xml 17 Dec 2004 16:03:37 -0000 1.14
@@ -3,9 +3,6 @@
<target name="init" description="Initializes project properties">
- <!-- SET THE TIMESTAMP -->
- <tstamp/>
-
<!-- GET THE ENVIRONMEN -->
<property environment="env"/>
@@ -107,7 +104,7 @@
<!-- #################################################################### -->
- <target name="jar" depends="init"
+ <target name="jar" depends="compile"
description="makes a jar archive of the compiled classes">
<mkdir dir="${dist_dir}" />
<jar destfile="${dist_dir}/uwCalSync4jSync.jar">
@@ -118,7 +115,7 @@
<!-- #################################################################### -->
- <target name="s4j" depends="init"
+ <target name="s4j" depends="compile"
description="makes a jar archive of the Calendar SyncSource module for
the sync4j Sync Server">
<mkdir dir="${dist_dir}" />
<property name="dir.module" value="${dist_dir}/calModule"/>
@@ -186,7 +183,7 @@
<!-- #################################################################### -->
- <target name="s4j.outlook" depends="init"
+ <target name="s4j.outlook" depends="compile"
description="makes a jar archive of the Calendar SyncSource module for
the sync4j Sync Server (MS-Outlook)">
<mkdir dir="${dist_dir}" />
<property name="dir.module" value="${dist_dir}/calModuleOutlook"/>
@@ -221,7 +218,7 @@
<copy file="${lib_dir}/jms-1.1.jar"
todir="${dir.module}/lib" />
<copy file="${lib_dir}/jndi-1.2.1.jar"
todir="${dir.module}/lib" />
<copy file="${lib_dir}/log4j-1.2.8.jar"
todir="${dir.module}/lib" />
- <copy file="${lib_dir}/cal4j-0.1.jar"
todir="${dir.module}/lib" />
+ <copy file="${lib_dir}/sync4j/foundation-1.4.jar"
todir="${dir.module}/lib" />
<copy todir="${dir.module}/lib">
<fileset dir="${lib_dir}/joram" />
@@ -288,7 +285,7 @@
<!-- #################################################################### -->
<target name="client" description="Launches the sync client"
- depends="init">
+ depends="compile">
<mkdir dir="${basedir}/db" />
<java classname="${CLIENT}"
failonerror="no"
@@ -300,7 +297,7 @@
<!-- #################################################################### -->
<target name="dummy" description="Launches the dummy calendar server"
- depends="init">
+ depends="compile">
<java classname="${DUMMY_SERVER}"
failonerror="no"
fork="yes"