<project name="groovy" default="grv">

  <taskdef name="groovy"
         classname="org.codehaus.groovy.ant.Groovy">
      <classpath id="groovy.classpath">
         <fileset dir="/qa/tools/opt/groovy-1.5.4/embeddable" includes="groovy-all-*.jar"/>
      </classpath>
  </taskdef>


   <path id="test.classpath">
      <pathelement location="jbossall-client.jar"/>
   </path>


<target name="grv">
   <groovy classpathref="test.classpath" src="groovy_bug.groovy"/>
</target>
</project>
