leiningen/test_projects/sample_no_aot/project.clj

14 lines
577 B
Clojure
Raw Normal View History

;; 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"
2012-06-14 23:26:22 +00:00
:dependencies [[org.clojure/clojure "1.3.0"]
[janino "2.5.15"]]
:uberjar-exclusions [#"DUMMY"]
:test-selectors {:default (fn [m] (not (:integration m)))
:integration :integration
:int2 :int2
:no-custom (fn [m] (not (false? (:custom m))))})