-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
75 lines (66 loc) · 2.98 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
(defproject next-transit "0.1.0-SNAPSHOT"
:description "API to get the next ferry information"
:url "https://next-transit.api.sankara.me"
:dependencies [[clojure.java-time "0.3.2"]
[java-time-literals "2018-04-06"]
[clj-http "3.10.1"]
[com.fasterxml.jackson.core/jackson-core "2.11.2"]
[com.fasterxml.jackson.datatype/jackson-datatype-jdk8 "2.11.2"]
[compojure "1.6.2"]
[cprop "0.1.17"]
[funcool/struct "1.4.0"]
[luminus-immutant "0.2.5"]
[luminus-transit "0.1.2"]
[luminus/ring-ttl-session "0.3.3"]
[markdown-clj "1.10.5"]
[metosin/compojure-api "1.1.13"]
[metosin/muuntaja "0.6.7"]
[metosin/ring-http-response "0.9.1"]
[mount "0.1.16"]
[nrepl "0.8.0"]
[org.clojure/clojure "1.9.0"]
[org.clojure/tools.cli "1.0.194"]
[org.clojure/tools.logging "1.1.0"]
[org.webjars.bower/tether "2.0.0-beta.5"]
[org.webjars/bootstrap "4.5.0"]
[org.webjars/font-awesome "5.14.0"]
[org.webjars/jquery "3.5.1"]
[org.webjars/webjars-locator "0.40"]
[ring-webjars "0.2.0"]
[ring/ring-core "1.8.1"]
[ring/ring-defaults "0.3.2"]
[selmer "1.12.28"]]
:min-lein-version "2.9.0"
:source-paths ["src/clj"]
:test-paths ["test/clj"]
:resource-paths ["resources"]
:target-path "target/%s/"
:main ^:skip-aot next-transit.core
:plugins [[lein-cljfmt "0.6.8"]
[lein-immutant "2.1.0"]
[lein-ancient "0.6.15"]]
:profiles
{:uberjar {:omit-source true
:aot :all
:uberjar-name "next-transit.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 [[expound "0.8.5"]
[pjstadig/humane-test-output "0.10.0"]
[prone "2020-01-17"]
[ring/ring-devel "1.8.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!)
(require 'java-time-literals.core)]}
:project/test {:jvm-opts ["-Dconf=test-config.edn"]
:resource-paths ["env/test/resources"]}
:profiles/dev {}
:profiles/test {}})