-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
31 lines (27 loc) · 1.19 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
(defproject mabank "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
[com.datomic/datomic-free "0.9.5697"]
[ring "1.8.1"]
[lein-datomic "0.2.0"]
[io.pedestal/pedestal.service "0.5.8"]
[io.pedestal/pedestal.jetty "0.5.8"]
[ch.qos.logback/logback-classic "1.1.8"]
[org.slf4j/jul-to-slf4j "1.7.22"]
[org.slf4j/jcl-over-slf4j "1.7.22"]
[org.slf4j/log4j-over-slf4j "1.7.22"]
[robert/hooke "1.3.0"]
[clj-time "0.15.0"]
[cheshire "5.8.0"]
[expectations "2.1.10"]
[com.stuartsierra/component "0.4.0"]
[prismatic/schema "1.1.12"]
[bouncer "1.0.1"]
[org.clojure/tools.logging "1.1.0"]]
:resource-paths ["config", "resources"]
:main ^{:skip-aot true} mabank.main
:target-path "target/%s"
:profiles {:uberjar {:aot [mabank.server]}})