<!--
    Example spooky syntax
-->
<project xmlns="http://www.ldodds.com/ns/spooky">
   <meta>
      <!-- where the project lives, and should be created -->
      <home>c:\temp\spooky</home>
      <!-- name of the project -->
      <name>example</name>
      <!-- creator (not currently used) -->
      <creator>Leigh Dodds</creator>
      <!-- description of the project -->
      <description>The Example Project</description>
   </meta>
   <structure>
      <!-- describes the project directory structure, assigns
             types to each directory, and indicates some default
             files
      -->
      <dir type="bin"/>
      <dir name="docs">
        <dir name="api" type="doc"/>
      </dir>
      <dir type="lib"/>
      <dir name="src">
        <dir name="resources"/>
        <dir name="tests" type="test"/>
        <dir name="java" type="src">
         <file name="test.xml">
&lt;test>Hello World&lt;/test>         
         </file>
        </dir>
      </dir>
      <file name="README.txt">
   This is the README file.
      </file>
      <file name="BUILD.txt"/>
      <file name="LICENSE.txt"/>
      <file name="CREDITS.txt"/>
   </structure>
</project>