leiningen/test_projects/uberjar-merging/project.clj
2013-10-05 13:56:57 -04:00

14 lines
628 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 [[org.clojure/clojure "1.5.1"]
[janino "2.5.15"]
[org.platypope/method-fn "0.1.0"]]
:uberjar-exclusions [#"DUMMY"]
:test-selectors {:default (fn [m] (not (:integration m)))
:integration :integration
:int2 :int2
:no-custom (fn [m] (not (false? (:custom m))))})