-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
16 lines (16 loc) · 817 Bytes
/
project.clj
File metadata and controls
16 lines (16 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(defproject powderkeg-example "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"]
[hcadatalab/powderkeg "0.5.1"]
[com.esotericsoftware/kryo-shaded "4.0.0"] ;; For Spark 2.x support
[org.apache.spark/spark-core_2.11 "2.1.0"]
[org.apache.spark/spark-sql_2.11 "2.1.0"]
[org.apache.spark/spark-streaming_2.11 "2.1.0"]
[org.apache.spark/spark-mllib_2.11 "2.1.0"]
[clj-time "0.12.2"]]
:aot :all
:main powderkeg-example.core
:repositories {"aliyun" "http://maven.aliyun.com/nexus/content/groups/public"})