blob: 869179c8427971a590936a4dbcb7d561e3f58f20 [file] [log] [blame]
(def ROOT-DIR (subs *file* 0 (- (count *file*) (count "project.clj"))))
(def VERSION (-> ROOT-DIR (str "/../VERSION") slurp (.trim)))
(eval `(defproject storm/storm-netty ~VERSION
:dependencies [[storm/storm-core ~VERSION]
[io.netty/netty "3.6.3.Final"]]
:java-source-paths ["src/jvm"]
:test-paths ["test/clj"]
:profiles {:release {}}
:jvm-opts ["-Djava.library.path=/usr/local/lib:/opt/local/lib:/usr/lib"]
:target-path "target"
:aot :all))