2015-11-13 22:44:41 +00:00
|
|
|
(defproject mount "0.2.0-SNAPSHOT"
|
2015-10-20 01:33:56 +00:00
|
|
|
:description "managing Clojure app state since (reset)"
|
|
|
|
|
:url "https://github.com/tolitius/mount"
|
|
|
|
|
:license {:name "Eclipse Public License"
|
|
|
|
|
:url "http://www.eclipse.org/legal/epl-v10.html"}
|
|
|
|
|
|
|
|
|
|
:source-paths ["src" "src/mount"]
|
|
|
|
|
|
2015-10-20 19:56:13 +00:00
|
|
|
:dependencies [[org.clojure/clojure "1.7.0"]
|
2015-10-21 11:32:51 +00:00
|
|
|
[ch.qos.logback/logback-classic "1.1.3"]
|
|
|
|
|
[org.clojure/tools.logging "0.3.1"]
|
2015-10-20 20:25:10 +00:00
|
|
|
[org.clojure/tools.macro "0.1.2"]
|
2015-10-20 19:56:13 +00:00
|
|
|
[org.clojure/tools.namespace "0.2.11"]]
|
2015-10-20 01:33:56 +00:00
|
|
|
|
2015-10-20 12:53:09 +00:00
|
|
|
:profiles {:dev {:source-paths ["dev" "test/app"]
|
2015-10-20 01:33:56 +00:00
|
|
|
:dependencies [[yesql "0.5.1"]
|
2015-10-21 11:32:51 +00:00
|
|
|
[org.clojure/tools.nrepl "0.2.11"]
|
2015-11-14 02:27:03 +00:00
|
|
|
[org.clojure/tools.cli "0.3.3"]
|
|
|
|
|
[com.datomic/datomic-free "0.9.5327" :exclusions [joda-time]]]}
|
|
|
|
|
|
|
|
|
|
;; "test" is in sources here to just "demo" the uberjar without poluting mount "src"
|
|
|
|
|
:uberjar {:source-paths ["test/app"]
|
|
|
|
|
:dependencies [[org.clojure/tools.cli "0.3.3"]
|
|
|
|
|
[org.clojure/tools.nrepl "0.2.11"]
|
|
|
|
|
[com.datomic/datomic-free "0.9.5327" :exclusions [joda-time]]]
|
|
|
|
|
:main app
|
|
|
|
|
:aot :all}})
|