forked from stuartsierra/clojure-hadoop
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathproject.clj
31 lines (31 loc) · 1.41 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
(defproject clojure-hadoop "1.4.5-SNAPSHOT"
: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.clojure/clojure "1.5.0"]
[org.apache.hadoop/hadoop-core "1.1.2"]
;; commons-io was omitted in 1.0.3/1.0.4
;; needs to be explicitly included
;; until this is resolved.
;; see http://goo.gl/Trx7A
[commons-io "2.4"]
[log4j/log4j "1.2.16" :exclusions [javax.mail/mail
javax.jms/jms
com.sun.jdmk/jmxtools
com.sun.jmx/jmxri]]]
:source-paths ["src" "test"]
; :global-vars {*warn-on-reflection* true}
:aot [clojure-hadoop.config
clojure-hadoop.defjob
clojure-hadoop.gen
clojure-hadoop.imports
clojure-hadoop.job
clojure-hadoop.load
clojure-hadoop.wrap
clojure-hadoop.flow
;; TODO: Remove them? Only needed for the tests.
clojure-hadoop.examples.wordcount1
clojure-hadoop.examples.wordcount2])