-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
31 lines (25 loc) · 1.09 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 pets-api "0.1.0-SNAPSHOT"
:description "Pets API developed by Guilherme Melo"
:url "http://example.com/FIXME"
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.10.0"]
[metosin/compojure-api "1.1.13"]
[prismatic/schema "1.1.12"]
;crypt library
[crypto-password "0.2.1"]
; metrics library
[metrics-clojure "2.8.0"]
[metrics-clojure-ring "2.8.0"]
[korma "0.4.3"]
[mysql/mysql-connector-java "8.0.19"]
[buddy/buddy-auth "2.2.0"]
[buddy/buddy-sign "3.1.0"]
[clojure.java-time "0.3.2"]]
:plugins [[lein-ring "0.12.5"]]
:ring {:handler pets-api.handler/app}
:profiles {:dev {:dependencies [[javax.servlet/servlet-api "2.5"]
[ring/ring-mock "0.3.2"]
[midje "1.9.3"]]
:plugins [[lein-midje "3.2.1"]
[lein-cloverage "1.0.13"]]}
:uberjar {:aot :all}})