-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
38 lines (37 loc) · 1.57 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
;; Copyright (c) 2019-2023 Bastien Guerry <[email protected]>
;; SPDX-License-Identifier: EPL-2.0
;; License-Filename: LICENSES/EPL-2.0.txt
(defproject
subscribe "0.7.5"
:url "https://git.sr.ht/~bzg/subscribe"
:description "Web application to subscribe to mailing lists."
:license {:name "Eclipse Public License v2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:min-lein-version "2.0.0"
:dependencies [
;; [integrant/integrant "0.10.0"]
[cheshire/cheshire "5.13.0"]
[com.draines/postal "2.0.5"]
[com.taoensso/tempura "1.5.4"]
[com.taoensso/timbre "6.5.0"]
[commons-validator/commons-validator "1.9.0"]
[hiccup/hiccup "1.0.5"]
[http-kit/http-kit "2.8.0"]
[markdown-clj/markdown-clj "1.12.1"]
[metosin/reitit "0.7.2"]
[metosin/reitit-middleware "0.7.2"]
[metosin/reitit-ring "0.7.2"]
[org.clojure/clojure "1.12.0"]
[org.clojure/core.async "1.6.681"]
[org.martinklepsch/clj-http-lite "0.4.3"]
[ring-cors/ring-cors "0.1.13"]
[ring/ring-devel "1.12.2"]
[selmer/selmer "1.12.61"]
]
:main core
:jvm-opts ["-Xmx500m"]
:profiles {:uberjar {:omit-source true
:aot :all
:uberjar-name "subscribe.jar"
:source-paths ["src/" ]
:resource-paths ["resources"]}})