leiningen/test_projects/sample_no_aot/project.clj
2010-09-24 21:32:12 -07:00

12 lines
537 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".
(defproject nomnomnom "0.5.0-SNAPSHOT"
:dependencies [[clojure "1.2.0"]
[robert/hooke "1.0.2"]]
:test-selectors {:default (fn [m] (not (:integration m)))
:integration :integration
:int2 :int2
:no-custom (fn [m] (not (false? (:custom m))))})