-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
21 lines (21 loc) · 1020 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject diane "1.0.0"
:description "Server-Side Server-Sent-Events client"
:url "https://github.com/fajpunk/diane"
:scm {:name "git"
:url "https://github.com/fajpunk/diane.git"}
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/core.async "0.1.303.0-886421-alpha"]
[com.taoensso/timbre "3.2.1"]
[clj-http "0.9.2"]]
:source-paths ["src"]
:profiles {:dev {:plugins [[codox "0.8.10"]
[lein-expectations "0.0.7"]
[lein-autoexpect "1.2.2"]]
:dependencies [[http-kit "2.1.18"]
[expectations "2.0.6"]
[compojure "1.1.8"]
[org.clojure/tools.namespace "0.2.5"]]
:source-paths ["dev_src"]
:codox {:sources ["src"]}}})