Changeset 1917

Show
Ignore:
Timestamp:
08/14/08 00:41:01
Author:
douglm
Message:

Move directory tool ru targats into dir build file

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/build.xml

    r1916 r1917  
    386386 
    387387  <!-- ================================================================= 
    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. 
    390389       ================================================================= --> 
    391390 
  • trunk/build/quickstart/build.xml

    r1916 r1917  
    228228         target="javadoc" /> 
    229229  </target> 
    230  
    231   <!-- ================================================================= 
    232        Build and run the directory tools 
    233        ================================================================= --> 
    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> 
    258230</project> 
  • trunk/build/quickstart/run-dir.xml

    r1914 r1917  
    2020 
    2121  <!-- ================================================================= 
    22        The "hsqldb" target starts the hsqldb server 
     22       The "dirstart" target starts the directory server 
    2323       ================================================================= --> 
    2424 
     
    5656 
    5757  <!-- ================================================================= 
     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  <!-- ================================================================= 
    5886       The "dirclient" target runs the directory server client which 
    5987       provides a gui interface to the running directory.