-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
67 lines (53 loc) · 3.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
(defproject clj-components "0.2.0-alpha-15"
:description "Component lifecycle management lib based off Avout/Zookeeper"
:url "https://github.com/MailOnline/clj-components"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.1"]
;; Shared
[com.fasterxml.jackson.core/jackson-core "2.2.1" :exclusions [commons-codec]]
;; Config
[zookeeper-clj "0.9.5" :exclusions [org.apache.zookeeper/zookeeper
commons-codec]]
[org.apache.zookeeper/zookeeper "3.4.5" :exclusions [commons-codec
com.sun.jmx/jmxri
com.sun.jdmk/jmxtools
javax.jms/jms
org.slf4j/slf4j-log4j12
log4j]]
[avout "0.5.4-MO"]
[environ "0.4.0"]
;; Logging
[org.clojure/tools.logging "0.2.6"]
[ch.qos.logback/logback-classic "1.0.13" :exclusions [org.slf4j/slf4j-api]]
[ch.qos.logback/logback-access "1.0.13"]
[ch.qos.logback/logback-core "1.0.13"]
[org.slf4j/slf4j-api "1.7.5"]
[net.logstash.logback/logstash-logback-encoder "1.2" :exclusions [com.fasterxml.jackson.core/jackson-core]]
;; ElasticSearch Component
[clojurewerkz/elastisch "1.3.0" :exclusions [com.fasterxml.jackson.core/jackson-core]]
;; Riemann Component
[riemann-clojure-client "0.2.6"]
;; Redis Component
[com.taoensso/carmine "1.7.0" :exclusions [commons-codec]]
;; WebServer Component
[ring "1.2.0"]
;; NRepl Component
[org.clojure/tools.nrepl "0.2.2"]
;; Quartz Component
[clojurewerkz/quartzite "1.0.1"]
;; DB Component
[org.clojure/java.jdbc "0.2.3"]
[com.oracle/ojdbc14 "10.2.0.4.0"]
;; Memcached Component
[net.spy/spymemcached "2.10.5"]
;; Stencil Component
[stencil "0.3.2" :exclusions [slingshot]]]
:profiles {:dev {:source-paths ["dev"]
:plugins [[lein-environ "0.4.0"]]}}
:jvm-opts ["-Dlog.dir=logs"]
:repositories {"snapshots" {:url "http://nexusint.andintweb.dmgt.net:8081/nexus/content/repositories/snapshots"
:username "admin" :password "admin123" :sign-releases false}
"releases" {:url "http://nexusint.andintweb.dmgt.net:8081/nexus/content/repositories/releases"
:username "admin" :password "admin123" :sign-releases false}
"thirdparty" {:url "http://nexusint.andintweb.dmgt.net:8081/nexus/content/repositories/thirdparty"}})