-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
18 lines (18 loc) · 988 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject sparkling-16-ml "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
[gorillalabs/sparkling "1.2.3"]
[org.apache.spark/spark-mllib_2.10 "1.6.0"]
[org.apache.spark/spark-streaming_2.10 "1.6.0"]
[org.apache.spark/spark-streaming-kafka_2.10 "1.6.3"]
[org.apache.spark/spark-streaming-flume_2.10 "1.6.1"]
[yieldbot/serializable-fn "0.1.2"
:exclusions [com.twitter/chill-java]]]
:aot [#".*" sparkling.serialization sparkling.destructuring sparkling-16-ml.core]
:main sparkling-16-ml.matrix
:profiles {:provided {:dependencies [[org.apache.spark/spark-core_2.10 "1.6.0"]]}
:dev {:plugins [[lein-dotenv "RELEASE"]]}}
:java-source-paths ["src/java"])