-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
41 lines (30 loc) · 1.19 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
(defproject rpi-challenger "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "https://github.com/solita"
:license {:name "MIT License"
:url "http://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.4.0"]
; HTTP Server
[ring/ring-core "1.1.6"]
[ring/ring-devel "1.1.6"]
[ring/ring-jetty-adapter "1.1.6"]
; HTTP Routing
[compojure "1.1.3"]
; HTML Templating
[enlive "1.0.0"]
; HTTP Client
[http.async.client "0.5.0"]
[com.ning/async-http-client "1.7.8"]
; Logging
[ch.qos.logback/logback-classic "1.0.7"]
; Date & Time
[clj-time "0.4.4"]
; JSON
[clj-json "0.5.1"]
; Command Line Interface
[org.clojure/tools.cli "0.2.2"]
; Utils
[org.clojure/algo.generic "0.1.0"]
[org.clojure/tools.namespace "0.2.1"]
[com.google.guava/guava "13.0.1"]]
:main rpi-challenger.main)