-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
19 lines (19 loc) · 905 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(defproject com.chess-rating/rating "0.1.0-SNAPSHOT"
:min-lein-version "2.0.0"
:description "A simple glicko rater with built in api support. "
:url "https://github.com/Molyna/clj-glicko"
:profiles {:dev {:dependencies [[org.clojure/tools.namespace "0.2.8"]]
:source-paths ["dev"]}}
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
[com.novemberain/monger "3.0.2"]
[cheshire "5.6.1"]
[metosin/compojure-api "1.1.0" :exclusions [commons-codec]]
[compojure "1.5.0"]
[clj-time "0.11.0"]
[org.clojure/tools.logging "0.3.1"]
[ring/ring-defaults "0.2.0"]
[ring-cors "0.1.7"]]
:plugins [[lein-ring "0.9.7"]]
:ring {:handler ratings.api/app})