-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
32 lines (22 loc) · 1.01 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
(defproject io.factorhouse/shroud "1.0.4"
:description "Secure Key Generation and Payload Encryption"
:url "https://github.com/factorhouse/shroud"
:license {:name "MIT License"
:url "https://github.com/factorhouse/shroud/blob/main/LICENSE"}
:dependencies [[org.clojure/clojure "1.12.0"]
[org.clojure/tools.cli "1.1.230"]
[org.clojure/tools.logging "1.3.0"]
[ch.qos.logback/logback-classic "1.5.16"]]
:profiles {:dev {:plugins [[dev.weavejester/lein-cljfmt "0.13.0"]]
:dependencies [[clj-kondo "2025.01.16"]]
:resource-paths ["dev-resources"]}
:uberjar {:aot :all}}
:aliases {"smoke" ["do"
["clean"]
["check"]
["cljfmt" "check"]
["run" "-m" "clj-kondo.main" "--lint" "src:test" "--parallel"]
["test"]]}
:source-paths ["src"]
:test-paths ["test"]
:pedantic? :abort)