clj-druid/project.clj

19 lines
715 B
Clojure
Raw Normal View History

2017-02-27 10:45:35 +00:00
(defproject y42/clj-druid "0.2.19-SNAPSHOT"
2014-09-11 14:18:25 +00:00
:description "Clojure library for Druid.io"
2014-09-17 12:56:21 +00:00
:url "http://github.com/y42/clj-druid"
2015-05-22 15:07:15 +00:00
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
2016-03-17 10:08:59 +00:00
:test-selectors {:default (fn [m] (not (or (:integration m) (:regression m))))
:integration :integration
:regression :regression}
2017-01-12 13:56:10 +00:00
:dependencies [[org.clojure/clojure "1.8.0"]
2014-09-16 10:21:35 +00:00
[swiss-arrows "1.0.0"]
2017-01-12 13:56:10 +00:00
[clj-http "3.4.1"]
[prismatic/schema "1.1.3"]
[org.clojure/tools.logging "0.3.1"]
[org.clojure/data.json "0.2.6"]
2016-08-05 09:21:22 +00:00
[curator "0.0.6"]])