forked from elastic/stream2es
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
20 lines (20 loc) · 874 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject org.elasticsearch/stream2es
(-> "etc/version.txt" slurp .trim)
:description "Index streams into ES."
:url "http://github.com/elasticsearch/elasticsearch/stream2es"
:license {:name "Apache 2"
:url "http://www.apache.org/licenses/LICENSE-2.0.html"}
:resource-paths ["etc" "resources"]
:dependencies [[cheshire "5.0.1"]
[clj-http "0.6.3"]
[org.clojure/clojure "1.5.1"]
[org.clojure/tools.cli "0.2.2"]
[org.elasticsearch/elasticsearch-river-wikipedia "1.2.0"]
[org.twitter4j/twitter4j-stream "3.0.3"]
[slingshot "0.10.3"]
[clj-oauth "1.4.0"]
[org.tukaani/xz "1.3"]
[org.elasticsearch/workroom "0.99.0"]]
:plugins [[lein-bin "0.3.2"]]
:main stream2es.main
:bin {:bootclasspath true})