Skip to content

Instantly share code, notes, and snippets.

@cgrand
Created August 6, 2009 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cgrand/163329 to your computer and use it in GitHub Desktop.
Save cgrand/163329 to your computer and use it in GitHub Desktop.
<project name="clojuredev" default="compile-clojure" xmlns:mvn="urn:maven-artifact-ant">
<description>
</description>
<property name="build" location="bin"/>
<property name="src" location="src"/>
<target name="compile-clojure"
description="Compile Clojure sources.">
<java classname="clojure.lang.Compile" fork="true">
<classpath>
<pathelement location="clojure.jar"/>
<pathelement path="${src}:${build}"/>
<fileset dir="${eclipse.home}">
<include name="plugins/**/*.jar"/>
</fileset>
</classpath>
<sysproperty key="clojure.compile.path" value="${build}"/>
<arg value="clojuredev.console.inner-repl"/>
</java>
</target>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment