-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
71 lines (61 loc) · 3.02 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
(defproject amazon-wishlist "0.1.0-SNAPSHOT"
:description "A small book CRUD app"
:url "http://example.com/FIXME"
:min-lein-version "2.0.0"
:source-paths ["src/main/clj"]
:test-paths ["src/test/clj"]
:resource-paths ["src/main/resources"
"env/shared/resources"]
:target-path "target/%s/"
:main ^:skip-aot bookstore.core
:profiles {:uberjar {:omit-source true
:aot :all
:uberjar-name "bookstore.jar"
:source-paths ["env/prod/clj" ]
:resource-paths ["env/prod/resources"]}
:dev [:project/dev :profiles/dev]
:project/dev {:jvm-opts ["-Dconf=dev-config.edn"]
:dependencies [[pjstadig/humane-test-output "0.11.0"]
[prone "2021-04-23"]
[ring/ring-devel "1.9.4"]]
:plugins [[com.jakemccrary/lein-test-refresh "0.24.1"]
[jonase/eastwood "0.3.5"]]
:source-paths ["env/dev/clj"]
:resource-paths ["env/dev/resources"
"src/test/resources"]
:repl-options {:init-ns user
:timeout 120000}
:injections [(require 'pjstadig.humane-test-output)
(pjstadig.humane-test-output/activate!)]}
:profiles/dev {}}
:dependencies [[org.clojure/clojure "1.10.3"]
[org.clojure/data.json "1.0.0"]
[etaoin "0.3.10"]
[nrepl "0.8.3"]
[ch.qos.logback/logback-classic "1.2.5"]
[org.clojure/tools.logging "1.1.0"]
[org.clojure/tools.cli "1.0.206"]
[org.postgresql/postgresql "42.2.18"]
[luminus-transit "0.1.3"]
[luminus-undertow "0.1.14"]
[luminus/ring-ttl-session "0.3.3"]
[metosin/ring-http-response "0.9.3"]
[ring-webjars "0.2.0"]
[ring/ring-core "1.9.4"]
[ring/ring-defaults "0.3.3"]
[selmer "1.12.49"]
[markdown-clj "1.10.8"]
[luminus-migrations "0.7.1"]
[mount "0.1.16"]
[cprop "0.1.17"]
[conman "0.9.1"]
[metosin/reitit "0.5.13"]
[metosin/muuntaja "0.6.7"]
[org.jsoup/jsoup "1.13.1"]
[manifold "0.1.8"]
[ring-cors "0.1.13"]
[camel-snake-kebab "0.4.2"]]
; per default, we don't want to test amazon or integration, as these take too long
:test-selectors {:default (fn [m] (not (or (:amazon m) (:integration m))))
:amazon :amazon
:integration :integration})