<?xml version="1.0" encoding="ISO-8859-1"?>
<project name="build-common" default="default">
  <import file="dependencies.xml"/>
  <property name="lib.dir" value="${basedir}/lib"/> 
  <path id="lib.classpath">
      <fileset dir="${lib.dir}">
        <include name="*.jar"/>
      </fileset>
  </path>

  <target name="default" depends="test"/>

  <!-- Groovy task definition -->
  <taskdef name="groovy" 
           classname="org.codehaus.groovy.ant.Groovy"
           classpathref="lib.classpath"/>
            

  <target name="test" depends="test1"/>
  <target name="test1">
    <groovy>
      ant.echo(properties['ant.project.name'])
    </groovy>
  </target>
  

  
</project>
