forked from nathanmarz/cascalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
33 lines (33 loc) · 1.47 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
(defproject cascalog "1.10.1-SNAPSHOT"
:description "Hadoop without the Hassle."
:url "http://www.cascalog.org"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:mailing-list {:name "Cascalog user mailing list"
:archive "https://groups.google.com/d/forum/cascalog-user"
:post "[email protected]"}
:dependencies [[cascalog/cascalog-core "1.10.1-SNAPSHOT"]
[cascalog/cascalog-checkpoint "1.10.1-SNAPSHOT"]
[cascalog/cascalog-more-taps "1.10.1-SNAPSHOT"]
[cascalog/cascalog-checkpoint "1.10.1-SNAPSHOT"]
[cascalog/cascalog-lzo "1.10.1-SNAPSHOT"]
[cascalog/cascalog-math "1.10.1-SNAPSHOT"]
[cascalog/midje-cascalog "1.10.1-SNAPSHOT"]]
:plugins [[lein-sub "0.2.1"]
[codox "0.6.4"]]
:sub ["cascalog-core"
"cascalog-checkpoint"
"cascalog-more-taps"
"cascalog-elephantdb"
"cascalog-lzo"
"cascalog-math"
"midje-cascalog"]
:codox {:src-dir-uri "http://github.com/nathanmarz/cascalog/blob/master"
:src-linenum-anchor-prefix "L"
:sources ["cascalog-core/src"
"cascalog-checkpoint/src"
"cascalog-more-taps/src"
"cascalog-elephantdb/src"
"cascalog-lzo/src"
"cascalog-math/src"
"midje-cascalog/src"]})