clojuresque is now a plugin for Gradle, which adds Clojure support. It allows compilation with automatic namespace recognition. The plugin is based on the Java plugin and hooks into the standard configurations and archives.
Usage
Create a build.gradle script in the root directory of your project. Note that gradle derives the project name from the name of this directory!
buildscript {
repositories {
maven { url 'http://clojars.org/repo' }
}
dependencies {
classpath 'clojuresque:clojuresque:1.0.0'
}
}
apply plugin: 'clojure'