-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathproject.clj
26 lines (19 loc) · 925 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
24
25
26
(defproject clj-spark/clj-spark "0.1.0-SNAPSHOT"
:min-lein-version "2.0.0"
:license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"}
:description "Clojure API wrapper on the Spark project (http://spark-project.org/)"
:url "https://github.com/TheClimateCorporation/clj-spark"
:jvm-opts ["-Dlog4j.configuration=file:log4j.properties"]
:dependencies [[org.clojure/clojure "1.4.0"]
[org.clojure/tools.logging "0.2.3"]
[org.clojure/tools.cli "0.2.1"]
[org.clojars.mlimotte/serializable-fn "0.0.3"]]
; Include te Spark dep for compile and run, but not for uberjar
:profiles {
:dev {:dependencies [[org.spark-project/spark-core_2.9.2 "0.6.1"]]}}
:aot [clj-spark.spark.functions
clj-spark.api
clj-spark.util
weatherbill.query
clj-spark.examples.query]
:main clj-spark.examples.query)