-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
44 lines (40 loc) · 1.93 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
;; Copyright (c) 2022-2023 Bastien Guerry <[email protected]>
;; SPDX-License-Identifier: EPL-2.0
;; License-Filename: LICENSES/EPL-2.0.txt
(defproject woof "0.3.2"
:description "Watch Over Our Folders"
:url "https://github.com/bzg/woof"
:license {:name "Eclipse Public License - v 2.0"
:url "http://www.eclipse.org/legal/epl-v20.html"}
:dependencies [[org.clojure/clojure "1.11.1"]
[org.clojure/core.async "1.6.681"]
[org.clojure/data.json "2.5.0"]
[io.forward/clojure-mail "1.0.8"]
[http-kit/http-kit "2.7.0"]
[clj-rss/clj-rss "0.4.0"]
[markdown-clj/markdown-clj "1.11.7"]
[metosin/reitit "0.6.0"]
[metosin/reitit-ring "0.6.0"]
[metosin/reitit-middleware "0.6.0"]
[ring/ring-devel "1.11.0"]
[ring-cors/ring-cors "0.1.13"]
[integrant/integrant "0.8.1"]
[tea-time/tea-time "1.0.1"]
[com.draines/postal "2.0.5"]
[com.taoensso/timbre "6.3.1"]
[selmer/selmer "1.12.59"]
[datalevin/datalevin "0.8.25"]
[com.cognitect/transit-clj "1.0.333"]
[medley/medley "1.4.0"]
[aero/aero "1.1.6"]
[clojure.java-time/clojure.java-time "1.4.2"]
[version-clj/version-clj "2.0.2"]
[lambdaisland/kaocha "1.87.1366"]]
:jvm-opts ["--add-opens=java.base/java.nio=ALL-UNNAMED"
"--add-opens=java.base/sun.nio.ch=ALL-UNNAMED"]
:source-paths ["src"]
:resource-paths ["resources"]
:profiles {:uberjar {:omit-source true
:aot :all
:uberjar-name "woof.jar"}}
:main bzg.init)