Changeset 1935
- Timestamp:
- 10/28/08 22:58:10
- Files:
-
- trunk/build/buildsh.xml (modified) (3 diffs)
- trunk/build/buildwar.xml (modified) (2 diffs)
- trunk/build/libjars.properties (deleted)
- trunk/build/loadDeployConfig.xml (added)
- trunk/build/quickstart/build.xml (modified) (5 diffs)
- trunk/build/quickstart/run-tomcat.xml (modified) (1 diff)
- trunk/config/bwbuild/default/cal.options.xml (modified) (1 diff)
- trunk/config/bwbuild/default/cal.properties (modified) (2 diffs)
- trunk/config/bwbuild/jboss/democal.options.xml (modified) (1 diff)
- trunk/config/bwbuild/jboss/democal.properties (modified) (2 diffs)
- trunk/config/configs/democal.options.xml (modified) (1 diff)
- trunk/config/configs/democal.properties (modified) (2 diffs)
- trunk/deployment/appjars.xml (modified) (1 diff)
- trunk/deployment/build.xml (modified) (5 diffs)
- trunk/deployment/resources/build.xml (modified) (1 diff)
- trunk/lib/ant-1.7.0.jar (deleted)
- trunk/lib/commons (deleted)
- trunk/lib/geronimo-stax-api_1.0_spec-1.0.jar (deleted)
- trunk/lib/google (deleted)
- trunk/lib/hibernate-3.2.5.ga (deleted)
- trunk/lib/hsqldb-1.7.3.3.jar (deleted)
- trunk/lib/ical4j-head.jar (deleted)
- trunk/lib/jakarta-oro-2.0.8.jar (deleted)
- trunk/lib/javamail-1.4 (deleted)
- trunk/lib/junit-4.4.jar (deleted)
- trunk/lib/licences/google (added)
- trunk/lib/licences/google/COPYING (added)
- trunk/lib/liferay4 (deleted)
- trunk/lib/liferay4.2 (deleted)
- trunk/lib/log4j-1.2.8.jar (deleted)
- trunk/lib/lucene-core-2.0.0.jar (deleted)
- trunk/lib/lucene-misc-2.0.0.jar (deleted)
- trunk/lib/portals-bridges-1.0/portals-bridges-common-1.0.jar (deleted)
- trunk/lib/portals-bridges-1.0/portals-bridges-struts-1.2.7-1.0.jar (deleted)
- trunk/lib/struts-1.2.9/struts-1.2.9.jar (deleted)
- trunk/lib/wstx-asl-3.9.0.jar (deleted)
- trunk/lib/xalan-2-6-0.jar (deleted)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/build/buildsh.xml
r1919 r1935 19 19 20 20 <target name="init"> 21 <!-- Load the location of the libraries -->22 <property file="${org.bedework.project.bedework}/build/libjars.properties" />23 24 21 <!-- Destinations - where we build stuff --> 25 22 <property name="app.dest.home" … … 119 116 120 117 <!-- Include the quickstart jdbc driver --> 121 <copy todir="${app.dest.lib}" file="${ appserver.jdbcdriver.jar}"/>118 <copy todir="${app.dest.lib}" file="${org.bedework.appjar.hsqldb}"/> 122 119 123 120 <copy todir="${app.dest.classes}"> … … 138 135 <!-- Create the env.properties file --> 139 136 <mkdir dir="${app.dest.properties}" /> 140 141 <copy tofile="${app.dest.properties}/env.properties"142 file="${org.bedework.config.properties}" />143 137 144 138 <copy tofile="${app.dest.properties}/options.xml" trunk/build/buildwar.xml
r1933 r1935 46 46 47 47 <target name="init.common"> 48 <!-- Load the location of the libraries -->49 <property file="${org.bedework.project.bedework}/build/libjars.properties" />50 51 48 <!-- Destinations - where we build an unwrapped war --> 52 49 <property name="app.dest.war" … … 368 365 </not> 369 366 <then> 370 <copy todir="${app.dest.lib}" file="${ xalan.jar}"/>367 <copy todir="${app.dest.lib}" file="${org.bedework.appjar.xalan}"/> 371 368 </then> 372 369 </if> trunk/build/quickstart/build.xml
r1917 r1935 25 25 <echo message="${org.bedework.README}" /> 26 26 </target> 27 28 <echo message="Load user properties from ${org.bedework.user.build.properties}" /> 29 30 <!-- Load user property definition overrides --> 31 <property file="${org.bedework.user.build.properties}" /> 32 33 <!-- This may have defined the config properties location. Load that now to get overrides 34 <property file="${org.bedework.config.properties}" />--> 35 36 <import file="${bedework.quickstart.basedir}/../loadDeployConfig.xml"/> 27 37 28 38 <target name="usage" depends="init" … … 85 95 file="${org.bedework.user.build.properties}" /> 86 96 87 <echo message="Load user properties from ${org.bedework.user.build.properties}" />88 89 <!-- Load user property definition overrides -->90 <property file="${org.bedework.user.build.properties}" />91 92 <!-- This may have defined the config properties location. Load that now to get overrides -->93 <property file="${org.bedework.config.properties}" />94 95 96 97 <!-- Unfortunately it sits on top of everything 97 98 <splash imageurl="file://${org.bedework.project.bedework}/docs/icons/bedeworkLogo.gif"/> … … 103 104 location="${user.home}/bedework.build.properties" /> 104 105 106 <property name="org.bedework.appserver.dir" 107 location="${org.bedework.project.bedework}/../apache-tomcat-5.5.17" /> 108 109 <property name="org.bedework.hsqldb.dir" 110 location="${org.bedework.project.bedework}/../hsqldb-1.7.3.3" /> 111 105 112 <echo message="Load user properties from ${org.bedework.user.build.properties}" /> 106 113 … … 108 115 <property file="${org.bedework.user.build.properties}" /> 109 116 110 <!-- ==================== config properties ========================= -->117 <!-- ==================== config properties ========================= 111 118 <property name="org.bedework.config.properties" 112 119 location="${org.bedework.config.base}/configs/democal.properties" /> … … 122 129 </filterchain> 123 130 </loadproperties> 131 --> 124 132 </target> 125 133 trunk/build/quickstart/run-tomcat.xml
r1914 r1935 10 10 11 11 <project name="quickstart-run-tomcat" default="tomcatstart" basedir="."> 12 <!-- This target normally overrid en by the importing build.xml -->12 <!-- This target normally overridden by the importing build.xml --> 13 13 <target name="run.init"> 14 14 <property name="org.bedework.project.bedework" trunk/config/bwbuild/default/cal.options.xml
r1933 r1935 5 5 <bedework> 6 6 <global> 7 <version>3.5</version> 8 7 9 <!-- This property is how the running system finds the system settings. 8 10 In theory we could have multiple settings with different names trunk/config/bwbuild/default/cal.properties
r1933 r1935 17 17 # Global options 18 18 # 19 org.bedework.global.version=3.520 21 19 # Define the names of the applications we want to build 22 20 org.bedework.install.app.names=bwconfig,CalAdmin,EventSubmit,Events,SoEDept,UserCal,Pubcaldav,Usercaldav,caldavTest,test,dumpres … … 135 133 org.bedework.directory.dir=${org.bedework.project.bedework}/../apacheds-1.5.3-fixed 136 134 135 # Where we keep the dojo stuff in deployment/resources/javascript 136 org.bedework.dojo.dir=dojo-0.4.1-ajax 137 138 # A place to put jdbc drivers. This can be directed at any local directory 139 org.bedework.jdbc.lib=${org.bedework.project.bedework}/lib/jdbc 140 137 141 # ------------------------------------------------------------------------ 138 142 # hsqldb defs trunk/config/bwbuild/jboss/democal.options.xml
r1933 r1935 5 5 <bedework> 6 6 <global> 7 <version>3.5</version> 8 7 9 <!-- This property is how the running system finds the system settings. 8 10 In theory we could have multiple settings with different names trunk/config/bwbuild/jboss/democal.properties
r1933 r1935 17 17 # Global options 18 18 # 19 org.bedework.global.version=3.4.120 21 19 # Define the names of the applications we want to build 22 20 org.bedework.install.app.names=bwconfig,CalAdmin,EventSubmit,Events,SoEDept,UserCal,Pubcaldav,Usercaldav,caldavTest,test,dumpres … … 126 124 # ------------------------------------------------------------------------ 127 125 # 126 # 127 # ------------------------------------------------------------------------ 128 # directory defs 129 # ------------------------------------------------------------------------ 130 131 org.bedework.directory.dir=${org.bedework.project.bedework}/../apacheds-1.5.3-fixed 132 133 # Where we keep the dojo stuff in deployment/resources/javascript 134 org.bedework.dojo.dir=dojo-0.4.1-ajax 135 136 # A place to put jdbc drivers. This can be directeed at any local directory 137 org.bedework.jdbc.lib=${org.bedework.project.bedework}/lib/jdbc 138 128 139 # ------------------------------------------------------------------------ 129 140 # hsqldb defs trunk/config/configs/democal.options.xml
r1933 r1935 5 5 <bedework> 6 6 <global> 7 <version>3.5</version> 8 7 9 <!-- This property is how the running system finds the system settings. 8 10 In theory we could have multiple settings with different names trunk/config/configs/democal.properties
r1933 r1935 16 16 # Global options 17 17 # 18 org.bedework.global.version=3.519 18 20 19 # Define the names of the applications we want to build … … 133 132 org.bedework.directory.dir=${org.bedework.project.bedework}/../apacheds-1.5.3-fixed 134 133 134 # Where we keep the dojo stuff in deployment/resources/javascript 135 org.bedework.dojo.dir=dojo-0.4.1-ajax 136 137 # A place to put jdbc drivers. This can be directeed at any local directory 138 org.bedework.jdbc.lib=${org.bedework.project.bedework}/lib/jdbc 139 135 140 # ------------------------------------------------------------------------ 136 141 # hsqldb defs trunk/deployment/appjars.xml
r1933 r1935 303 303 <getJar lib="${org.bedework.app.lib}" 304 304 name="servletapi" version="2.4" /> 305 306 <getJar lib="${org.bedework.app.lib}" 307 name="xalan" version="2.6.0" /> 308 <getJar lib="${org.bedework.app.lib}" 309 name="hsqldb" version="1.7.3.3" /> 305 310 </sequential> 306 311 </macrodef> trunk/deployment/build.xml
r1900 r1935 39 39 location="${org.bedework.temp.dir}/extrajars" /> 40 40 41 <!-- Load the location of the libraries -->42 <property file="${org.bedework.project.bedework}/build/libjars.properties" />43 44 41 <dirname property="this.build.dir" file="${ant.file}"/> 45 42 <property name="bedework.deployment.base" location="this.build.dir" /> … … 49 46 <import file="${this.build.dir}/appjars.xml" /> 50 47 48 <import file="${build.dir}/loadDeployConfig.xml"/> 49 51 50 <target name="init" > 52 51 <getAppJars /> … … 54 53 <property name="source.home" location="${this.build.dir}/src"/> 55 54 56 <!-- Load default deploy properties 57 <property file="${this.build.dir}/deploy.properties"/> 58 --> 59 60 <!-- ==================== config properties ========================= --> 55 <loadDeployConfig /> 56 57 <!-- ==================== config properties ========================= 61 58 <property name="org.bedework.config.properties" 62 59 location="${org.bedework.config.base}/configs/democal.properties" /> … … 66 63 <echo message="==========================================================" /> 67 64 <echo message="Use config properties ${org.bedework.config.properties}" /> 68 <loadproperties 69 srcFile="${org.bedework.config.properties}" > 65 <loadproperties srcFile="${org.bedework.config.properties}" > 70 66 <filterchain> 71 67 <expandproperties/> 72 68 </filterchain> 73 69 </loadproperties> 70 --> 74 71 75 72 <!-- default to debug off --> … … 93 90 </then> 94 91 </if> 95 96 <!-- ==================== config properties =========================97 <property name="org.bedework.config.properties"98 location="${org.bedework.config.base}/configs/${org.bedework.clone.name}.properties" />99 100 <echo message="==========================================================" />101 <echo message="Use clone properties ${org.bedework.config.properties}" />102 <loadproperties103 srcFile="${org.bedework.config.properties}" >104 <filterchain>105 <expandproperties/>106 </filterchain>107 </loadproperties>108 -->109 92 </target> 110 93 trunk/deployment/resources/build.xml
r1863 r1935 122 122 <!-- Add dojo --> 123 123 <copy todir="${cmn.destdir}/javascript/dojo"> 124 <fileset dir="${common.resources.dir}/javascript/${ dojo.dir}" />124 <fileset dir="${common.resources.dir}/javascript/${org.bedework.dojo.dir}" /> 125 125 </copy> 126 126 </then>
