-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
82 lines (73 loc) · 3.4 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
(defproject battery-measurements-api "0.1.0-SNAPSHOT"
:description "Api to store battery measurements in the sonnen db"
:url "https://git.sonnenbatterie.de/digital-dev/microservices/battery-measurements-api"
:dependencies [[buddy "2.0.0"]
[ch.qos.logback/logback-classic "1.2.3"]
[cheshire "5.8.1"]
[clojure.java-time "0.3.2"]
[cognician/dogstatsd-clj "0.1.1"]
[com.google.protobuf/protobuf-java "3.6.1"]
[com.layerware/hugsql "0.4.9"]
[com.taoensso/timbre "4.10.0"]
[conman "0.8.3"]
[cprop "0.1.13"]
[funcool/struct "1.3.0"]
[luminus-http-kit "0.1.6"]
[luminus-migrations "0.6.5"]
[luminus-transit "0.1.1"]
[luminus/ring-ttl-session "0.3.2"]
[markdown-clj "1.10.0"]
[metosin/muuntaja "0.6.4"]
[metosin/reitit "0.3.7"]
[metosin/ring-http-response "0.9.1"]
[mount "0.1.16"]
[mysql/mysql-connector-java "8.0.16"]
[nrepl "0.6.0"]
[org.clojure/clojure "1.10.1"]
[org.clojure/core.async "0.4.500"]
[org.clojure/data.json "0.2.6"]
[org.clojure/java.jdbc "0.7.9"]
[org.clojure/tools.cli "0.4.2"]
[org.clojure/tools.logging "0.4.1"]
[org.webjars.npm/bulma "0.7.4"]
[org.webjars.npm/material-icons "0.3.0"]
[org.webjars/webjars-locator "0.36"]
[raven-clj "1.6.0-alpha3"]
[ring-webjars "0.2.0"]
[ring/ring-core "1.7.1"]
[ring/ring-defaults "0.3.2"]
[selmer "1.12.12"]]
:min-lein-version "2.0.0"
:source-paths ["src/clj"]
:test-paths ["test/clj"]
:resource-paths ["resources"]
:target-path "target/%s/"
:main ^:skip-aot battery-measurements-api.core
:plugins []
:aliases {"kaocha" ["with-profile" "+kaocha" "run" "-m" "kaocha.runner"]}
:profiles
{:uberjar {:omit-source true
:aot :all
:uberjar-name "battery-measurements-api.jar"
:source-paths ["env/prod/clj"]
:resource-paths ["env/prod/resources"]}
:dev [:project/dev :profiles/dev]
:test [:project/dev :project/test :profiles/test]
:kaocha {:dependencies [[lambdaisland/kaocha "0.0-529"]
[lambdaisland/kaocha-cloverage "0.0-32"]]}
:project/dev {:jvm-opts ["-Dconf=dev-config.edn"]
:dependencies [[expound "0.7.2"]
[pjstadig/humane-test-output "0.9.0"]
[prone "1.6.3"]
[ring/ring-devel "1.7.1"]
[ring/ring-mock "0.4.0"]]
:plugins [[com.jakemccrary/lein-test-refresh "0.24.1"]]
:source-paths ["env/dev/clj"]
:resource-paths ["env/dev/resources"]
:repl-options {:init-ns user}
: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 {}})