-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
22 lines (21 loc) · 781 Bytes
/
project.clj
File metadata and controls
22 lines (21 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(defproject rated "0.1.0-SNAPSHOT"
:description "Micro API used to manage rate limits"
:url "https://github.com/T0aD/rated/"
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/tools.cli "0.3.5"]
[compojure "1.5.1"]
[ring/ring-defaults "0.2.1"]
[cheshire "5.4.0"]
[http-kit "2.2.0"]
; [org.clojure/tools.logging "0.3.1"]
]
:plugins [[lein-ring "0.9.7"]]
; :ring {:handler rated.handler/app}
:main rated.server
:profiles
{:dev {:dependencies [[javax.servlet/servlet-api "2.5"]
[ring/ring-mock "0.3.0"]
[cheshire "5.4.0"]
; [org.clojure/core.async "0.2.395"]
]}})