This repository has been archived by the owner on Feb 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
56 lines (56 loc) · 2.51 KB
/
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
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
(defproject lcmap-nemo "3.4.1"
:description "Cassandra HTTP Partition Server"
:url "http://github.com/usgs-eros/lcmap-nemo"
:license {:name "Unlicense"
:url ""}
:dependencies [[camel-snake-kebab "0.4.0"]
[cc.qbits/alia-all "4.0.3"]
[cc.qbits/hayt "4.0.0"]
[cc.qbits/alia-joda-time "4.0.2"]
[cheshire "5.8.0"]
[clojurewerkz/buffy "1.1.0"]
[compojure "1.6.0"]
[danlentz/clj-uuid "0.1.7"]
[digest "1.4.6"]
[environ "1.1.0"]
[http-kit "2.2.0"]
[jumblerg/ring.middleware.cors "1.0.1"]
[org.clojure/clojure "1.9.0"]
[org.clojure/test.check "0.9.0"]
[org.clojure/tools.logging "0.4.0"]
[org.slf4j/slf4j-log4j12 "1.7.21"]
[metrics-clojure "2.9.0"]
[metrics-clojure-health "2.9.0"]
[metrics-clojure-jvm "2.9.0"]
[metrics-clojure-ring "2.9.0"]
[mount "0.1.11"]
[ring "1.6.2"]
[ring/ring-defaults "0.3.1"]
[ring/ring-json "0.4.0"]]
;; Emit warnings on all reflection calls.
:global-vars {*warn-on-reflection* true}
:plugins [[lein-environ "1.1.0"]]
:profiles {:dev-repl {:env {:db-host "localhost"
:db-port 9042
:db-keyspace "nemo_dev"
:db-user "cassandra"
:db-pass "cassandra"
:db-tables "one,two"
:http-port 5757}}
:dev [:dev-repl {:resource-paths ["dev" "test"]}]
:repl [:dev-repl {:resource-paths ["dev" "test"]
:dependencies [[cider/cider-nrepl "0.15.1"]
[org.slf4j/slf4j-log4j12 "1.7.21"]]}]
:test {:env {:db-host "localhost"
:db-port 9042
:db-keyspace "nemo_test"
:db-user "cassandra"
:db-pass "cassandra"
:db-tables "one,two"
:http-port 5758}
:resource-paths ["test" "test/resources"]}
:uberjar {:omit-source true
:aot :all}}
:jvm-opts ["-server"]
:main lcmap.nemo.main
:repl-options {:init-ns user})