-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
18 lines (18 loc) · 844 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject yandex-rss-stats "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"}
:main yandex-rss-stats.core
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/tools.logging "0.3.1"]
[ch.qos.logback/logback-classic "1.1.3"]
[http-kit "2.2.0"]
[cheshire "5.7.1"]
[compojure "1.5.2"]
[com.github.kyleburton/clj-xpath "1.4.3"]
[ring/ring-mock "0.3.0"]
[org.clojure/core.async "0.3.442"]
[ring/ring-json "0.5.0-beta1"]]
:profiles {:dev {:resource-paths ["test_resources"]}
:test {:dependencies [[http-kit.fake "0.2.1"]]}})