Changeset 2053
- Timestamp:
- 02/10/09 16:51:32
- Files:
-
- trunk/build/loadDeployConfig.xml (modified) (2 diffs)
- trunk/build/quickstart/linux/bw (modified) (5 diffs)
- trunk/config/bwbuild/default/build.properties (modified) (1 diff)
- trunk/config/bwbuild/default/carddav.options.xml (added)
- trunk/config/bwbuild/jboss/carddav.options.xml (added)
- trunk/config/bwbuild/liferay5/carddav.options.xml (added)
- trunk/deployment/appjars.xml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/build/loadDeployConfig.xml
r1938 r2053 18 18 <property file="${org.bedework.user.build.properties}" /> 19 19 20 <!-- These should already be defined in the above file 20 21 <property name="org.bedework.config.properties" 21 22 location="${org.bedework.config.base}/configs/democal.properties" /> 22 23 <property name="org.bedework.config.options" 23 24 location="${org.bedework.config.base}/configs/democal.options.xml" /> 25 --> 24 26 25 27 <echo message="==========================================================" /> … … 31 33 32 34 <xmlproperty file="${org.bedework.config.options}"/> 35 36 <!-- Load the CardDAV options --> 37 <xmlproperty file="${org.bedework.carddav.options}"/> 33 38 34 39 <if> trunk/build/quickstart/linux/bw
r2024 r2053 30 30 echo " -bwchome Specify path to configurations" 31 31 echo " -bwc Specify configuration name" 32 echo " -offline Build without atempting to retrieve library jars" 32 echo " -offline Build without attempting to retrieve library jars" 33 echo " -carddav Target is for the CardDAV build, otherwise it's a calendar build" 33 34 echo " target Ant target to execute" 34 35 echo "" … … 59 60 saveddir=`pwd` 60 61 62 trap 'cd $saveddir' 0 63 trap "exit 2" 1 2 3 15 64 61 65 export QUICKSTART_HOME=$saveddir 62 66 … … 68 72 offline= 69 73 quickstart= 74 carddav= 70 75 71 76 if [ "$1" = "" ] ; then … … 86 91 -quickstart) 87 92 quickstart="yes" 93 shift 94 ;; 95 -carddav) 96 carddav="yes" 88 97 shift 89 98 ;; … … 140 149 CLASSPATH=$CLASSPATH:$QUICKSTART_HOME/bedework/applib/log4j-1.2.8.jar 141 150 151 152 if [ "$carddav" != "" ] ; then 153 cd $QUICKSTART_HOME/bedework-carddav 154 fi 155 142 156 $JAVA_HOME/bin/java -classpath $CLASSPATH $ant_xmllogfile $offline -Dant.home=$ANT org.apache.tools.ant.launch.Launcher $BWCONFIG $ant_listener $ant_logger $* trunk/config/bwbuild/default/build.properties
r1944 r2053 21 21 org.bedework.config.properties=${env.BEDEWORK_CONFIG}/cal.properties 22 22 org.bedework.config.options=${env.BEDEWORK_CONFIG}/cal.options.xml 23 org.bedework.carddav.options=${env.BEDEWORK_CONFIG}/carddav.options.xml 23 24 24 25 # Enable/disable replacement of log4j config during deployment trunk/deployment/appjars.xml
r2052 r2053 311 311 312 312 <getJar lib="${org.bedework.app.lib}" 313 name="xalan" version="2. 6.0" />313 name="xalan" version="2.7.1" /> 314 314 <getJar lib="${org.bedework.app.lib}" 315 315 name="hsqldb" version="1.7.3.3" />
