tests/build.xml
author hlopkmar
Sat, 01 Dec 2012 22:06:11 +0000
branchdevelopment
changeset 1851 d74d5dc547f3
parent 1825 2e2b62afe02f
child 1961 5fdbb226b781
permissions -rw-r--r--
junit tests for param annotations

<project name="tests" default="build">

<property name="dir.libs" value="../libs/java/libs"/>

<path id="libjava-tests.classpath">
    <fileset dir="${dir.libs}">
        <include name="**/*.jar"/>
    </fileset>
</path>

     
    



  <target name="build">
	<ant antfile="build.xml" target="build" inheritRefs="false" dir="libjava">
	  <reference refid="libjava-tests.classpath" torefid="libjava-tests.classpath"/>
	</ant>

	<ant antfile="build.xml" target="build" inheritRefs="false" dir="libjava-mauve">

	</ant>
  </target>

  <target name="clean">
	<subant target="clean">
	  <fileset dir="." includes="*/build.xml"/>
	</subant>
  </target>



</project>