You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by mc...@apache.org on 2003/01/28 00:52:04 UTC

cvs commit: avalon-sandbox sandbox.properties build.xml

mcconnell    2003/01/27 15:52:04

  Added:       .        sandbox.properties build.xml
  Log:
  Convinience build and clean.
  
  Revision  Changes    Path
  1.1                  avalon-sandbox/sandbox.properties
  
  Index: sandbox.properties
  ===================================================================
  # -------------------------------------------------------------------
  # B U I L D  P R O P E R T I E S
  # -------------------------------------------------------------------
  # Specifies default property values
  # Overridden by ../default.properties and all ant.properties
  # Not user-editable; use ant.properties files instead
  #
  # This buildfile provides support for sandbox cleaning and rebuilding.
  #
  
  # --------------------------------------------------
  #                PROJECTS
  # --------------------------------------------------
  
  # ---- Assembly ----
  assembly.home = assembly
  
  # ---- Lifecycle ----
  lifecycle.home = lifecycle
  
  # ---- Assembly ----
  merlin.home = merlin
  
  # ---- Assembly ----
  meta.home = meta
  
  # --------------------------------------------------
  #                RELATIVES
  # --------------------------------------------------
  
  avalon.home = ${basedir}/../jakarta-avalon
  
  excalibur.home = ${basedir}/../jakarta-avalon-excalibur
  
  
  
  1.1                  avalon-sandbox/build.xml
  
  Index: build.xml
  ===================================================================
  <?xml version="1.0"?>
  
  <!--  
  Copyright (C) The Apache Software Foundation. All rights reserved.
  This software is published under the terms of the Apache Software License
  version 1.1, a copy of which has been included with this distribution in
  the LICENSE.txt file.
  
  @author  Avalon Development Team
  @version 1.0 12/03/2001
  -->
  
  <project name="sandbox" default="main" basedir=".">
  
    <property file="${basedir}/../ant.properties"/>
    <property file="${basedir}/ant.properties"/>
    <property file="${user.home}/.ant.properties"/>
    <property file="${basedir}/sandbox.properties"/>
  
    <target name="rebuild" depends="clean,main" description="Rebuild the project"/>
  
    <target name="clean">
      <ant antfile="${meta.home}/build.xml" target="clean" inheritall="false"/>
      <ant antfile="${lifecycle.home}/build.xml" target="clean" inheritall="false"/>
      <ant antfile="${assembly.home}/build.xml" target="clean" inheritall="false"/>
      <ant antfile="${merlin.home}/build.xml" target="clean" inheritall="false"/>
    </target>
  
    <target name="main">
      <ant antfile="${meta.home}/build.xml" inheritall="false"/>
      <ant antfile="${lifecycle.home}/build.xml" inheritall="false"/>
      <ant antfile="${assembly.home}/build.xml" inheritall="false"/>
      <ant antfile="${merlin.home}/build.xml" inheritall="false"/>
    </target>
  
  </project>
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>