-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
39 lines (28 loc) · 1.13 KB
/
project.clj
File metadata and controls
39 lines (28 loc) · 1.13 KB
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
(defproject deck36-storm-backend-nodejs "0.0.1-SNAPSHOT"
:source-paths ["src/clj"]
:java-source-paths ["src/jvm"]
:aot :all
:plugins [[lein-git-deps "0.0.1-SNAPSHOT"] [lein-idea "1.0.1"]]
:resource-paths [
"resources/nodejs/"
"resources/config/storm.yml"
"resources/config/storm_dev.yml"
"resources/config/storm_prod.yml"
]
:git-dependencies [
["https://github.com/steschas/storm-rabbitmq.git"]
["https://github.com/steschas/storm-json.git"]
]
:dependencies [
[commons-collections/commons-collections "3.2.1"]
[com.googlecode.json-simple/json-simple "1.1"]
[redis.clients/jedis "2.0.0"]
[com.rabbitmq/amqp-client "3.3.1"]
[io.latent/storm-rabbitmq "0.5.11-SNAPSHOT"]
[com.rapportive/storm-json "0.0.1"]
[com.jayway.jsonpath/json-path "0.9.1"]
]
:exclusions [org.slf4j/slf4j-log4j12 storm/storm]
:profiles {:dev {:dependencies [[storm "0.9.0.1"]]}}
:min-lein-version "2.0.0"
)