<?xml version="1.0" encoding="UTF-8"?>
<!--
  ===========================================================================
     File:  build.xml
  Purpose:  Build Central build process template for Build Central components.
  Local Targets     Usage
  ................  .........................................................
  none              Default target which performs no action.
  ===========================================================================
-->
<project name="build" default="none" basedir="." xsi:noNamespaceSchemaLocation="http://9.181.3.220/developerworks/schema/4.0/dw-document-4.0.xsd">
  
  <!--
    =========================================================================
      Properties
    =========================================================================
  -->
  
  <property environment="bc" />
  
  <!--
    =========================================================================
       Target:  distribute
      Purpose:  Override default action to do nothing (for now).
    =========================================================================
  -->
  
  <target name="distribute" />
  
  <!--
    =========================================================================
       Target:  none
      Purpose:  Warn the user this file should only be called with a specific
                target in mind.
    =========================================================================
  -->
  
  <target name="none">
    
    <fail message="This script should only be called with a specific target." />
  
  </target>
</project>
