-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
20 lines (20 loc) · 905 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject http-clj "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"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/tools.cli "0.3.5"]
[org.clojure/data.codec "0.1.0"]
[org.clojure/core.match "0.3.0-alpha4"]
[digest "1.4.4"]
[com.stuartsierra/component "0.3.1"]
[clj-http "2.2.0"]
[com.taoensso/timbre "4.7.4"]
[hiccup "1.0.5"]]
:profiles {:dev {:dependencies [[speclj "3.3.1"]]}
:cob-spec {:uberjar-name "http-clj-cob-spec.jar"
:aot [http-clj.app.cob-spec]
:main http-clj.app.cob-spec}}
:plugins [[speclj "3.3.1"]]
:test-paths ["spec"])