leiningen/sample/project.clj
Phil Hagelberg 02e97149d7 Rename munge-project-args to eval-unquoted-project.
Also eval unquoted forms rather than passing them through.
2010-06-24 21:59:21 -07:00

13 lines
502 B
Clojure

;; This project is used for leiningen's test suite, so don't change
;; any of these values without updating the relevant tests. If you
;; just want a basic project to work from, generate a new one with
;; "lein new".
(def clj-version "1.1.0-master-SNAPSHOT")
(defproject nomnomnom "0.5.0-SNAPSHOT"
:dependencies [[org.clojure/clojure ~clj-version]
[rome/rome ~(str "0." "9")]
[org.ccil.cowan.tagsoup/tagsoup "1.2"]]
:main nom.nom.nom
:warn-on-reflection true)