Changeset 1916

Show
Ignore:
Timestamp:
08/11/08 01:21:31
Author:
douglm
Message:

Scripts and code to add groups and group members.

Files:

Legend:

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

    r1915 r1916  
    702702  </target> 
    703703 
     704  <target name="addGroup" depends="init" 
     705          description="Build and run directory tools to add a group"> 
     706    <ant antfile="${org.bedework.project.bwtools}/build.xml" inheritall="false" 
     707           target="addGroup" /> 
     708  </target> 
     709 
     710  <target name="addGroupMember" depends="init" 
     711          description="Build and run directory tools to add a group member"> 
     712    <ant antfile="${org.bedework.project.bwtools}/build.xml" inheritall="false" 
     713           target="addGroupMember" /> 
     714  </target> 
     715 
    704716  <!-- ================================================================= 
    705717       Build and run the unit test suite 
  • trunk/build/quickstart/build.xml

    r1915 r1916  
    245245  </target> 
    246246 
     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> 
    247258</project>