Changeset 1953
- Timestamp:
- 11/07/08 16:19:05
- Files:
-
- trunk/build.xml (modified) (3 diffs)
- trunk/build/quickstart/linux/install (modified) (2 diffs)
- trunk/config/build.xml (modified) (2 diffs)
- trunk/deployutil/build.xml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/build.xml
r1952 r1953 162 162 excludes="*" /> 163 163 <!-- default to empty --> 164 <fileset id="base.resource.files" refid="empty.fileset" /> 164 <fileset id="buildjar.resource.files" refid="empty.fileset" /> 165 <fileset id="buildjar.generated.java.sources" refid="empty.fileset" /> 165 166 166 167 <!-- ==================== Subcomponent Compilation Classpath ==================== --> … … 204 205 205 206 <!-- ================================================================= 206 "build" and "clean" targets for the project - does not build 207 subsidiary projects like rpiutil and access 207 "build" and "clean" targets for the project 208 208 ================================================================= --> 209 209 … … 213 213 build.freebusy,build.bwtools,build.webapps, 214 214 build.testsuite,build.deployutil" 215 description="builds the project"/> 215 description="builds the project"> 216 <copy toDir="${dist.home}" > 217 <fileset dir="${org.bedework.project.bwtools}/dist" includes="*.jar" /> 218 </copy> 219 </target> 216 220 217 221 <target name="clean" depends="init,clean.rpiutil,clean.access,clean.davutil, trunk/build/quickstart/linux/install
r1951 r1953 22 22 $JAVA_HOME/bin/java -jar $DS_HOME/bin/apacheds-tools.jar graceful --install-path $DS_HOME --configuration 23 23 } 24 25 echo "========================================================" 26 echo "This script will create a set of configurations in your " 27 echo "home directory ($HOME) for you to customize" 28 echo "In addition we create an initial set of users and groups" 29 echo "which allow an initial system to run" 30 echo "" 31 echo "Further changes can then be made to the running quickstart" 32 echo "using the tools provided" 33 echo "" 34 echo "The following information will be requested:" 35 echo " One or more administrative group names" 36 echo " One or more administrative users" 37 echo " One or more non-administrative users" 38 echo "" 39 echo "The ldap directory will be initialised with this information" 40 echo "then you will provide the account which will be made superuser" 41 echo "which must be one of those supplied above." 42 echo "========================================================" 24 43 25 44 if [ -d "$HOME/bwbuild" ] ; then … … 59 78 cd $DS_HOME && ./apacheds.sh & 60 79 80 echo "Pausing while the server starts" 81 61 82 sleep 10 83 84 echo "Getting directory information and creating entries" 62 85 63 86 DIRTOOL_HOME=$BEDEWORK_HOME/projects/bwtools 64 87 DIRTOOL_CP=$libcache/commons-codec-1.3.jar:$libcache/log4j-1.2.8.jar 65 DIRTOOL_CP=$DIRTOOL_CP:$ DIRTOOL_HOME/dist/bw-tools-3.5.jar88 DIRTOOL_CP=$DIRTOOL_CP:$BEDEWORK_HOME/dist/bw-tools-3.5.jar 66 89 67 90 $JAVA_HOME/bin/java -classpath $DIRTOOL_CP org.bedework.tools.directory.DirTool -initSystem 68 91 92 echo "Enter superuser account" 93 superuser= 94 until [ "$superuser" != "" ] ; do 95 read superuser 96 done 97 98 echo "create data" trunk/config/build.xml
r953 r1953 76 76 <!-- ==================== Sources and classes ====================== --> 77 77 78 <fileset id="b ase.java.sources" dir="${source.home}" >78 <fileset id="buildjar.java.sources" dir="${source.home}" > 79 79 <include name="org/bedework/webconfig/**/*.java"/> 80 80 </fileset> … … 108 108 <!-- ==================== Sources and classes ====================== --> 109 109 110 <fileset id="b ase.java.sources" dir="${source.home}" >110 <fileset id="buildjar.java.sources" dir="${source.home}" > 111 111 <!-- 112 112 <include name="edu/rpi/cct/uwcal/config/**/*.java"/> trunk/deployutil/build.xml
r957 r1953 19 19 <!-- ==================== Sources and classes ====================== --> 20 20 21 <fileset id="b ase.java.sources" dir="${source.home}" >21 <fileset id="buildjar.java.sources" dir="${source.home}" > 22 22 <include name="org/bedework/*/*.java"/> 23 23 </fileset>
