forked from alexott/clojure-hadoop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
23 lines (23 loc) · 995 Bytes
/
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
(defproject clojure-hadoop "1.3.2"
:description "Library to aid writing Hadoop jobs in Clojure."
:url "http://github.com/alexott/clojure-hadoop"
:license {:name "Eclipse Public License 1.0"
:url "http://opensource.org/licenses/eclipse-1.0.php"
:distribution "repo"
:comments "Same license as Clojure"}
:dependencies [[org.apache.hadoop/hadoop-core "0.20.2"]
[org.clojure/clojure "1.2.0"]
[org.clojure/clojure-contrib "1.2.0"]
[org.apache.hadoop/hadoop-core "0.20.2"]
[log4j/log4j "1.2.16"]]
:dev-dependencies [[swank-clojure "1.2.1"]]
:aot [clojure-hadoop.config
clojure-hadoop.defjob
clojure-hadoop.gen
clojure-hadoop.imports
clojure-hadoop.job
clojure-hadoop.load
clojure-hadoop.wrap
;; TODO: Remove them? Only needed for the tests.
clojure-hadoop.examples.wordcount1
clojure-hadoop.examples.wordcount2])