Changeset 3552
- Timestamp:
- 05/17/12 10:00:31
- Files:
-
- trunk/build/quickstart/build.xml (modified) (1 diff)
- trunk/build/quickstart/linux/bw (modified) (4 diffs)
- trunk/build/quickstart/windows/bw.bat (modified) (5 diffs)
- trunk/config/bwbuild/.defaults/cal.properties (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/build/quickstart/build.xml
r3537 r3552 129 129 <copy file="${org.bedework.activemq.configurations}/activemq-jms-ds.xml" 130 130 tofile="${org.bedework.appserver.deploy.dir}/activemq-jms-ds.xml" 131 overwrite="yes" /> 132 </target> 133 134 <!-- ================================================================= 135 "deploySolr" target 136 ================================================================= --> 137 138 <target name="deploySolr" depends="init" 139 description="Copy the solr config into the appserver"> 140 <copy file="${org.bedework.solr.configurations}/schema.xml" 141 tofile="${org.bedework.global.solr.dir}/${org.bedework.global.solr.publiccore}/conf/schema.xml" 142 overwrite="yes" /> 143 <copy file="${org.bedework.solr.configurations}/solrconfig.xml" 144 tofile="${org.bedework.global.solr.dir}/${org.bedework.global.solr.publiccore}/conf/solrconfig.xml" 145 overwrite="yes" /> 146 <copy file="${org.bedework.solr.configurations}/solr.xml" 147 tofile="${org.bedework.global.solr.dir}/solr.xml" 131 148 overwrite="yes" /> 132 149 </target> trunk/build/quickstart/linux/bw
r3538 r3552 87 87 deploylog4j= 88 88 deployActivemq= 89 deploySolr= 89 90 dirstart= 90 91 … … 140 141 echo " deploylog4j deploys a log4j configuration" 141 142 echo " deployActivemq deploys the Activemq config" 143 echo " deploySolr deploys the quickstart solr config" 142 144 echo "" 143 145 echo " PROJECT optionally defines the package to build. If omitted the main" … … 267 269 return 268 270 fi 271 272 if [ "$deploySolr" != "" ] ; then 273 cd $QUICKSTART_HOME 274 specialTarget=deploySolr 275 deploySolr= 276 return 277 fi 269 278 270 279 # projects … … 737 746 shift 738 747 ;; 748 deploySolr) 749 deploySolr="yes" 750 pkgdefault= 751 shift 752 ;; 739 753 dirstart) 740 754 dirstart="yes" trunk/build/quickstart/windows/bw.bat
r3538 r3552 101 101 SET deploylog4j= 102 102 SET deployActivemq= 103 SET deploySolr= 103 104 SET dirstart= 104 105 … … 180 181 :deployActivemq 181 182 SET deployActivemq="yes" 183 SET pkgdefault= 184 SHIFT 185 GOTO branch 186 187 :deploySolr 188 SET deploySolr="yes" 182 189 SET pkgdefault= 183 190 SHIFT … … 596 603 IF NOT "%deploylog4j%empty" == "empty" GOTO cdDeploylog4j 597 604 IF NOT "%deployActivemq%empty" == "empty" GOTO cdDeployActivemq 605 IF NOT "%deploySolr%empty" == "empty" GOTO cdDeploySolr 598 606 :: Now projects 599 607 IF NOT "%bwdeployutil%empty" == "empty" GOTO cdBwdeployutil … … 667 675 SET specialTarget="deployActivemq" 668 676 GOTO dospecial 677 678 :cdDeploySolr 679 cd %QUICKSTART_HOME% 680 SET deploySolr= 681 SET specialTarget="deploySolr" 682 GOTO dospecial 669 683 670 684 :: Projects … … 909 923 ECHO deploylog4j deploys a log4j configuration 910 924 ECHO deployActivemq deploys the Activemq config 925 ECHO deploySolr deploys the quickstart solr config 911 926 ECHO. 912 927 ECHO PROJECT optionally defines the package to build and is one of trunk/config/bwbuild/.defaults/cal.properties
r3537 r3552 206 206 207 207 # ------------------------------------------------------------------------ 208 # Solr defs 209 # ------------------------------------------------------------------------ 210 211 org.bedework.global.solr.dir=${org.bedework.data.dir}/../solr 212 213 # use the default solr configs 214 org.bedework.solr.configurations=${org.bedework.configuration.defaults} 215 216 org.bedework.global.solr.publiccore=bwpublic 217 218 # ------------------------------------------------------------------------ 208 219 # Deployment locations for the wsdls and associated files. 209 220 # For each related service there is a run time URL to allow client services
