-
Notifications
You must be signed in to change notification settings - Fork 12
/
project.clj
38 lines (30 loc) · 1021 Bytes
/
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
(defproject mvxcvi/clj-pgp "1.1.2-SNAPSHOT"
:description "Wrapper for the Bouncy Castle OpenPGP library"
:url "https://github.com/greglook/clj-pgp"
:license {:name "Public Domain"
:url "http://unlicense.org/"}
:aliases
{"coverage" ["with-profile" "+coverage" "cloverage"]
"fuzz" ["with-profile" "+tool" "run" "-m" "clj-pgp.tool.fuzz"]}
:deploy-branches ["main"]
:pedantic? :abort
:dependencies
[[org.clojure/clojure "1.12.0" :scope "provided"]
[org.bouncycastle/bcpg-jdk18on "1.79"]
[org.bouncycastle/bcprov-jdk18on "1.79"]
[org.clj-commons/byte-streams "0.3.4"]]
:hiera
{:cluster-depth 1}
:profiles
{:dev
{:dependencies [[org.clojure/test.check "1.1.1"]]}
:repl
{:source-paths ["dev"]
:dependencies [[org.clojure/tools.namespace "1.5.0"]]}
:coverage
{:plugins [[lein-cloverage "1.2.2"]]
:dependencies [[org.clojure/tools.logging "1.3.0"]]}
:tool
{:source-paths ["tool"]
:dependencies [[mvxcvi/puget "1.3.4"]]
:jvm-opts []}})