leiningen/test_projects/sample_no_aot/project.clj

15 lines
605 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"
2010-09-25 02:22:50 +00:00
:dependencies [[clojure "1.2.0"]
[robert/hooke "1.0.2"]
[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))))})