forked from puffedo/jaggr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
executable file
·32 lines (22 loc) · 919 Bytes
/
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
(defproject jaggr "0.1.1-SNAPSHOT"
:description "An aggregated CI traffic light for jenkins, based on the Jenkins Claims plugin"
:url "https://github.com/puffedo/jaggr"
:scm {:name "git"
:url "https://github.com/puffedo/jaggr"}
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
[ring/ring-core "1.4.0"]
[ring/ring-jetty-adapter "1.4.0"]
[compojure "1.4.0"]
[hiccup "1.0.5"]
[http-kit "2.1.19"]
[org.clojure/data.json "0.2.6"]
[com.grammarly/omniconf "0.2.2"]
[http-kit.fake "0.2.2"]]
:dev-dependencies [[ring/ring-devel "1.1.0"]]
:plugins [[lein-ring "0.7.1"]]
:ring {:handler jaggr.core/app
:init jaggr.core/init}
:main jaggr.core
)