forked from Factual/drake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
38 lines (38 loc) · 1.72 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
(defproject factual/drake "1.0.3"
:description "Drake: the data processing workflow tool (a.k.a. 'make for data')"
:url "https://github.com/Factual/drake"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:scm {:name "git"
:url "https://github.com/Factual/drake"}
:deploy-repositories [["clojars" {:creds :gpg}]]
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/core.memoize "0.5.6"]
[factual/drake-interface "0.0.1"]
[org.clojure/tools.logging "0.2.3"]
[clj-logging-config "1.9.6"]
[clojopts/clojopts "0.3.4"]
[org.flatland/useful "0.11.3"]
[fs "1.3.2"]
[factual/jlk-time "0.1"]
[clj-time "0.6.0"]
[digest "1.4.0"]
[com.google.guava/guava "14.0.1"]
[cheshire "5.2.0"]
[rhizome "0.2.5"]
[slingshot "0.10.3"]
[factual/fnparse "2.3.0"]
[commons-codec/commons-codec "1.6"]
[factual/sosueme "0.0.15"]
[factual/c4 "0.2.1"]
[hdfs-clj "0.1.3"] ;; for HDFS support
[org.apache.hadoop/hadoop-core "0.20.2"]
[clj-aws-s3 "0.3.10" :exclusions [joda-time]] ;; for AWS S3 support
;; for plugins
[com.cemerick/pomegranate "0.2.0" :exclusions [org.apache.httpcomponents/httpcore]]]
:test-selectors {:regression :regression
:default (complement :regression)
:all (constantly true)}
:main drake.core
:uberjar-name "drake.jar"
:aot :all)