clojure-koans/build.xml

22 lines
544 B
XML
Raw Normal View History

2010-01-15 01:13:17 +00:00
<project name="functional-koans" default="test">
<description>
functional-koans
</description>
<path id="classpath">
<path location="src"/>
<fileset dir="lib">
<include name="*.jar"/>
</fileset>
</path>
<target name="test" description="Run tests">
<java fork="true" classname="clojure.main" failonerror="true">
<classpath>
<path refid="classpath"/>
<path location="koans"/>
</classpath>
<arg value="koans/path_to_enlightenment.clj"/>
</java>
</target>
</project>