-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
94 lines (82 loc) · 3.91 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
(defproject coronavirus-charts "0.1.0-SNAPSHOT"
:description "Cite data associated with the novel coronavirus (covid-19)"
:url "http://coronavirus-charts.org"
:dependencies [[cheshire "5.10.0"] ;; confirm that we're not using anywhere
[metosin/jsonista "0.2.5"]
[clojure.java-time "0.3.2"]
[cprop "0.1.16"]
[expound "0.8.4"]
[funcool/struct "1.4.0"]
[luminus-immutant "0.2.5"]
[luminus-transit "0.1.2"]
[markdown-clj "1.10.2"]
[metosin/muuntaja "0.6.6"]
[metosin/reitit "0.4.2"]
[metosin/ring-http-response "0.9.1"]
[mount "0.1.16"]
[nrepl "0.6.0"]
[org.clojure/clojure "1.10.1"]
[org.clojure/tools.cli "1.0.194"]
[org.clojure/tools.logging "1.0.0"]
[org.webjars.npm/bulma "0.8.0"]
[org.webjars.npm/material-icons "0.3.1"]
[org.webjars/webjars-locator "0.39"]
[org.webjars/webjars-locator-jboss-vfs "0.1.0"]
[ring-webjars "0.2.0"]
[ring/ring-core "1.8.0"]
[ring/ring-defaults "0.3.2"]
[tick "0.4.23-alpha"]
[org.clojure/math.numeric-tower "0.0.4"]
[hiccup "1.0.5"]
[herb "0.10.0"]
[com.cerner/clara-rules "0.20.0"]
;; [org.clojars.pallix/analemma "1.0.0"]
[metasoarous/oz "1.6.0-alpha6"]
[enlive "1.1.6"]
[com.rpl/specter "1.1.3"]
[com.brunobonacci/where "0.5.5"]
[clj-http "3.10.0"]
;; Possibly a method of matching user ip to charts but the build
;; seems to be failing on gh and some dependency error with fasterxml jackson-bom
;; [com.fasterxml.jackson.core/jackson-core "2.9.0"]
;; [com.fasterxml.jackson/jackson-bom "2.9.10.20200223"]
;; [com.brunobonacci/ip-geoloc "0.3.0-SNAPSHOT"]
[selmer "1.12.18"]]
:min-lein-version "2.0.0"
:source-paths ["src/clj"]
:test-paths ["test/clj"]
:resource-paths ["resources"]
:target-path "target/%s/"
:main ^:skip-aot coronavirus-charts.core
:plugins [[lein-immutant "2.1.0"]
[lein-kibit "0.1.2"]]
:profiles
{:uberjar {:omit-source true
:aot :all
:uberjar-name "coronavirus-charts.jar"
:source-paths ["env/prod/clj" ]
:resource-paths ["env/prod/resources"]}
:dev [:project/dev :profiles/dev]
:test [:project/dev :project/test :profiles/test]
:project/dev {:jvm-opts ["-Dconf=dev-config.edn" ]
:dependencies [[pjstadig/humane-test-output "0.10.0"]
[prone "2020-01-17"]
[marginalia "0.9.1"]
[ring/ring-devel "1.8.0"]
[ring/ring-mock "0.4.0"]]
:plugins [[lein-marginalia "0.9.1"]
[com.jakemccrary/lein-test-refresh "0.24.1"]
[jonase/eastwood "0.3.5"]]
:source-paths ["env/dev/clj" ]
:resource-paths ["env/dev/resources"]
:repl-options {:init-ns user
:timeout 120000}
:injections [(require 'pjstadig.humane-test-output)
(pjstadig.humane-test-output/activate!)]}
:project/test {:jvm-opts ["-Dconf=test-config.edn" ]
:resource-paths ["env/test/resources"] }
:profiles/dev {}
:profiles/test {}})
;; DISCLAIMER
;; This product includes GeoLite2 data created by MaxMind, available from http://www.maxmind.com.
;; (move to acknowledgements whenever I make it)