-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
61 lines (47 loc) · 1.94 KB
/
project.clj
File metadata and controls
61 lines (47 loc) · 1.94 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
(defproject basilisk "0.1.0-SNAPSHOT"
:description "Clustering and big data processing platform."
:url "http://github.com/Codamic/basilisk"
:license {:name "GNU Public Licence version 2"
:url "http://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html"}
:dependencies [[org.clojure/clojure "1.9.0-alpha9"]
[clj-http "3.1.0"]
[environ "1.0.3"]
;; Type checking
[prismatic/schema "1.1.2"]
;; Metrics
[metrics-clojure "2.7.0"]
;; Mesos Client
[spootnik/mesomatic "0.28.0-r0"]
[spootnik/mesomatic-async "0.28.0-r0"]
;; Kafka
[kafka-clj "3.6.5"]
;; Zookeeper
[zookeeper-clj "0.9.4"]
;; Component library
[com.stuartsierra/component "0.3.1"]
;; Leiningen itself
[leiningen-core "2.6.1"]
;; Logging library
[com.taoensso/timbre "4.7.0"]
[com.cognitect/transit-clj "0.8.288"]
[clj-json "0.5.3"]
[clojure-csv/clojure-csv "2.0.2"]
[org.clojure/core.async "0.2.385"]]
:plugins [[lein-environ "1.0.3"]
[funcool/codeina "0.4.0"
:exclusions [org.clojure/clojure]]]
:codeina {:sources ["src"]
:reader :clojure
:target "doc/"
:src-uri "http://github.com/Codamic/basilisk/blob/master/"
:metadata {:doc/format :markdown}
:src-uri-prefix "#L"}
:main ^:skip-aot basilisk.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all}
:dev {:dependencies [[org.clojure/tools.namespace "0.2.11"]]
:source-paths ["dev"]
:env {:rethink-host "rethink"
:rethink-port "28015"
:rethink-db "basilisk_dev"}}}
)