leiningen/test_projects/sample/project.clj
2011-08-07 14:46:03 -07:00

23 lines
975 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")
(defproject nomnomnom "0.5.0-SNAPSHOT"
:description "A test project"
:dependencies [[~(symbol "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
:shell-wrapper {:main nom.nom.nom
:bin "bin/nom"}
:jar-exclusions [#"^META-INF"]
:test-selectors {:integration :integration
:default (complement :integration)
:random (fn [_] (> (rand) ~(float 1/2)))
:all (constantly true)}
:repositories {"snapshots" ~(format "file://%s/lein-repo"
(System/getProperty "java.io.tmpdir"))})