-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathproject.clj
18 lines (17 loc) · 1.07 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject streamparse-kafka-sample "0.0.1-SNAPSHOT"
:source-paths ["src/clj" "topologies"]
:aot :all
:resource-paths ["_resources"]
:target-path "_build"
:min-lein-version "2.0.0"
; :jvm-opts ["-client"]
:dependencies [[org.apache.storm/storm-core "0.9.4"]
[org.apache.storm/storm-kafka "0.9.4" :exclusions [org.slf4j/slf4j-api]]
[org.apache.kafka/kafka_2.9.2 "0.8.1.1" :exclusions [com.sun.jmx/jmxri com.sun.jdmk/jmxtools javax.jms/jms org.slf4j/slf4j-api]]
[org.apache.zookeeper/zookeeper "3.4.6" :exclusions [io.netty/netty org.slf4j/slf4j-api org.slf4j/slf4j-log4j12]]
[com.parsely/streamparse "0.0.4-SNAPSHOT"]]
; :jar-exclusions [#"log4j\.properties" #"backtype" #"trident" #"META-INF" #"meta-inf" #"\.yaml"]
; :uberjar-exclusions [#"log4j\.properties" #"backtype" #"trident" #"META-INF" #"meta-inf" #"\.yaml"]
:jar-exclusions [#"log4j\.properties" #"backtype" #"META-INF" #"meta-inf" #"\.yaml"]
:uberjar-exclusions [#"log4j\.properties" #"backtype" #"META-INF" #"meta-inf" #"\.yaml"]
)