leiningen で clojure-1.2.0 を使う

clojure-1.2.0 では遅延シーケンスの扱いが改善されていて、時間がかかる処理を伴うシーケンスでも期待通りに動いてくれます。
そこで、 leiningen で clojure-1.2.0 を使うための project.clj のサンプルです。

(defproject your-project-name "your-project-version"
  :description "description of your project"
  :dependencies [[org.clojure/clojure "1.2.0-master-SNAPSHOT"]
                 [org.clojure/clojure-contrib "1.2.0-SNAPSHOT"]
                 ...]
  :dev-dependencies [[leiningen/lein-swank "1.2.0-SNAPSHOT"]
                     ...]
  )

... のところは必要に応じて増やすなどしてねという意味です。