-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.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/kpow-secure "1.0.3"
:description "Secure Key Generation and Payload Encryption"
:url "https://github.com/factorhouse/kpow-secure"
:license {:name "MIT License"
:url "https://github.com/factorhouse/kpow-secure/blob/main/LICENSE"}
:dependencies [[org.clojure/clojure "1.11.1"]
[org.clojure/tools.cli "1.0.214"]
[org.clojure/tools.logging "1.2.4"]
[ch.qos.logback/logback-classic "1.2.11"]]
:profiles {:dev {:plugins [[lein-cljfmt "0.8.0"]]
:dependencies [[clj-kondo "2022.11.02"]]
: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)