Changeset 1917
- Timestamp:
- 08/14/08 00:41:01
- Files:
-
- trunk/build.xml (modified) (1 diff)
- trunk/build/quickstart/build.xml (modified) (1 diff)
- trunk/build/quickstart/run-dir.xml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/build.xml
r1916 r1917 386 386 387 387 <!-- ================================================================= 388 Targets to build sub-projects. Each sub-project generates a libapi 389 directory which contains the public api for that project. 388 Targets to build sub-projects. 390 389 ================================================================= --> 391 390 trunk/build/quickstart/build.xml
r1916 r1917 228 228 target="javadoc" /> 229 229 </target> 230 231 <!-- =================================================================232 Build and run the directory tools233 ================================================================= -->234 235 <target name="initDir" depends="init"236 description="Build and run directory init">237 <ant antfile="${bedework.build.file}" inheritrefs="true"238 target="initDir" />239 </target>240 241 <target name="addUser" depends="init"242 description="Build and run directory tools to add a user">243 <ant antfile="${bedework.build.file}" inheritrefs="true"244 target="addUser" />245 </target>246 247 <target name="addGroup" depends="init"248 description="Build and run directory tools to add a group">249 <ant antfile="${bedework.build.file}" inheritall="false"250 target="addGroup" />251 </target>252 253 <target name="addGroupMember" depends="init"254 description="Build and run directory tools to add a group member">255 <ant antfile="${bedework.build.file}" inheritall="false"256 target="addGroupMember" />257 </target>258 230 </project> trunk/build/quickstart/run-dir.xml
r1914 r1917 20 20 21 21 <!-- ================================================================= 22 The " hsqldb" target starts the hsqldbserver22 The "dirstart" target starts the directory server 23 23 ================================================================= --> 24 24 … … 56 56 57 57 <!-- ================================================================= 58 Build and run the directory tools 59 ================================================================= --> 60 61 <target name="initDir" depends="run.init" 62 description="Build and run directory init"> 63 <ant antfile="${bedework.build.file}" inheritrefs="true" 64 target="initDir" /> 65 </target> 66 67 <target name="addUser" depends="run.init" 68 description="Build and run directory tools to add a user"> 69 <ant antfile="${bedework.build.file}" inheritrefs="true" 70 target="addUser" /> 71 </target> 72 73 <target name="addGroup" depends="run.init" 74 description="Build and run directory tools to add a group"> 75 <ant antfile="${bedework.build.file}" inheritall="false" 76 target="addGroup" /> 77 </target> 78 79 <target name="addGroupMember" depends="run.init" 80 description="Build and run directory tools to add a group member"> 81 <ant antfile="${bedework.build.file}" inheritall="false" 82 target="addGroupMember" /> 83 </target> 84 85 <!-- ================================================================= 58 86 The "dirclient" target runs the directory server client which 59 87 provides a gui interface to the running directory.
