-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathproject.clj
More file actions
17 lines (17 loc) · 840 Bytes
/
project.clj
File metadata and controls
17 lines (17 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defproject cascading.kryo "0.4.7-SNAPSHOT"
:description "Kryo serialization for Cascading."
:url "https://github.com/Cascading/cascading.kryo"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:source-paths ["src/clj"]
:java-source-paths ["src/jvm"]
:plugins [[lein-clojars "0.9.1"]
[lein-midje "2.0.0-SNAPSHOT"]]
:repositories {"conjars" "http://conjars.org/repo"}
:dependencies [[com.esotericsoftware.kryo/kryo "2.17"]]
:profiles {:dev
{:dependencies [[org.apache.hadoop/hadoop-core "0.20.2-dev"]
[log4j/log4j "1.2.16"]
[midje "1.4.0" :exclusions [org.clojure/clojure]]
[org.clojure/clojure "1.4.0"]
[lein-midje "1.0.9"]]}})