Skip to content

Instantly share code, notes, and snippets.

@kbourgoin
Created August 29, 2014 16:26
Show Gist options
  • Save kbourgoin/31a4bdee20d8049a5d9c to your computer and use it in GitHub Desktop.
Save kbourgoin/31a4bdee20d8049a5d9c to your computer and use it in GitHub Desktop.
(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.2-incubating"]
[org.apache.storm/storm-kafka "0.9.2-incubating" :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"]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment