Changeset 2005
- Timestamp:
- 01/01/09 19:16:02
- Files:
-
- trunk/build.xml (modified) (10 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/build.xml
r1998 r2005 47 47 location="${org.bedework.projects}/dumprestore" /> 48 48 49 <property name="org.bedework.project.freebusy"50 location="${org.bedework.projects}/freebusy" />51 52 49 <property name="org.bedework.project.rpiutil" 53 50 location="${org.bedework.projects}/rpiutil" /> 54 55 <property name="org.bedework.project.synchml"56 location="${org.bedework.projects}/synchml" />57 51 58 52 <property name="org.bedework.project.testsuite" … … 107 101 108 102 <target name="init" > 109 <property name="org.bedework.qs.build.synchml" value="no" />110 111 103 <!-- Overriding this when invoking ant allows different user property 112 104 files to be included e.g. … … 146 138 <condition property="org.bedework.qs.build.caldav"> 147 139 <equals arg1="yes" arg2="${org.bedework.build.caldav}"/> 148 </condition>149 150 <property name="org.bedework.build.freebusy" value="no" />151 152 <condition property="org.bedework.qs.build.freebusy">153 <equals arg1="yes" arg2="${org.bedework.build.freebusy}"/>154 140 </condition> 155 141 … … 213 199 <target name="build" depends="init.build,build.rpiutil,build.bwtzsvr, 214 200 build.access,build.davutil, 215 build.calendarapi,build.dumprestore, build.synchml,201 build.calendarapi,build.dumprestore, 216 202 build.webdav,build.caldav,build.caldavTest, 217 build. freebusy,build.bwtools,build.webapps,203 build.bwtools,build.webapps, 218 204 build.testsuite,build.deployutil" 219 205 description="builds the project"> … … 225 211 <target name="clean" depends="init,clean.rpiutil,clean.bwtzsvr, 226 212 clean.access,clean.davutil, 227 clean.calendarapi,clean.dumprestore, clean.synchml,213 clean.calendarapi,clean.dumprestore, 228 214 clean.webdav,clean.caldav,clean.caldavTest, 229 clean. freebusy,clean.bwtools,clean.webapps,215 clean.bwtools,clean.webapps, 230 216 clean.testsuite" 231 217 description="Remove all generated files."> … … 236 222 <target name="quickstart-clean" depends="init,clean.rpiutil,clean.bwtzsvr, 237 223 clean.access,clean.davutil, 238 clean.calendarapi,clean.dumprestore, clean.synchml,224 clean.calendarapi,clean.dumprestore, 239 225 clean.webdav,clean.caldav,clean.caldavTest, 240 clean. freebusy,clean.bwtools,clean.webapps,226 clean.bwtools,clean.webapps, 241 227 clean.testsuite" 242 228 description="partial clean up for quickstart."> … … 346 332 </ant> 347 333 348 <if>349 <isset property="org.bedework.qs.build.synchml"/>350 <then>351 <ant antfile="${org.bedework.project.synchml}/build.xml" inheritall="false"352 target="javadoc" >353 <property name="destdir"354 location="${org.bedework.projectdocs.home}/synchml/api" />355 </ant>356 </then>357 </if>358 359 334 <ant antfile="${org.bedework.project.webdav}/build.xml" inheritall="false" 360 335 target="javadoc" > … … 373 348 <property name="destdir" 374 349 location="${org.bedework.projectdocs.home}/caldavTest/api" /> 375 </ant>376 377 <ant antfile="${org.bedework.project.freebusy}/build.xml" inheritall="false"378 target="javadoc" >379 <property name="destdir"380 location="${org.bedework.projectdocs.home}/freebusy/api" />381 350 </ant> 382 351 … … 573 542 574 543 <!-- ................................................................. 575 freebusy576 .................................................................. -->577 <target name="build.freebusy" depends="init"578 description="builds the freebusy project">579 <if>580 <isset property="org.bedework.qs.build.freebusy"/>581 <then>582 <ant antfile="${org.bedework.project.freebusy}/build.xml" inheritall="false"583 target="build-all" >584 <property name="org.bedework.libcache.dir"585 location="${org.bedework.project.bedework}/libcache"/>586 </ant>587 </then>588 </if>589 </target>590 591 <target name="clean.freebusy" depends="init"592 description="cleans the freebusy project">593 <if>594 <isset property="org.bedework.qs.build.freebusy"/>595 <then>596 <ant antfile="${org.bedework.project.freebusy}/build.xml" inheritall="false"597 target="deep-clean" />598 </then>599 </if>600 </target>601 602 <target name="clean.build.freebusy" depends="clean.freebusy,build.freebusy"603 description="builds the freebusy project"/>604 605 <!-- .................................................................606 544 rpiutil 607 545 .................................................................. --> … … 623 561 <target name="clean.build.rpiutil" depends="clean.rpiutil,build.rpiutil" 624 562 description="builds the rpiutil project"/> 625 626 <!-- .................................................................627 synchml628 .................................................................. -->629 <target name="build.synchml" depends="init"630 description="builds the synchml project">631 <if>632 <isset property="org.bedework.qs.build.synchml"/>633 <then>634 <ant antfile="${org.bedework.project.synchml}/build.xml" inheritall="false"635 target="build-all" >636 <property name="org.bedework.libcache.dir"637 location="${org.bedework.project.bedework}/libcache"/>638 </ant>639 </then>640 </if>641 </target>642 643 <target name="clean.synchml" depends="init"644 description="clean the synchml project">645 <if>646 <isset property="org.bedework.qs.build.synchml"/>647 <then>648 <ant antfile="${org.bedework.project.synchml}/build.xml" inheritall="false"649 target="deep-clean" />650 </then>651 </if>652 </target>653 654 <target name="clean.build.synchml" depends="clean.synchml,clean.synchml"655 description="builds the synchml project"/>656 563 657 564 <!-- .................................................................
