forked from liquidz/clj-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
31 lines (24 loc) · 1.41 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
(defproject com.nedap.staffing-solutions/clj-jwt "0.2.1"
:description "Clojure library for JSON Web Token(JWT)"
:url "https://github.com/nedap/clj-jwt"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:deploy-repositories {"github" {:url "https://maven.pkg.github.com/nedap/clj-jwt"
:username "github"
:password :env/github_token}}
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/data.json "0.2.6"]
[org.clojure/data.codec "0.1.0"]
[org.bouncycastle/bcpkix-jdk15on "1.52"]
[crypto-equality "1.0.0"]
[clj-time "0.15.2"]]
:plugins [[lein-midje "3.1.3"]]
:profiles {:dev {:dependencies [[midje "1.9.9" :exclusions [org.clojure/clojure]]]}
:ncrw {:global-vars {*assert* true} ;; `ci.release-workflow` relies on runtime assertions
:source-paths ^:replace []
:test-paths ^:replace []
:resource-paths ^:replace []
:plugins ^:replace []
:dependencies ^:replace [[com.nedap.staffing-solutions/ci.release-workflow "1.14.1"]]}
:ci {:pedantic? :abort
:jvm-opts ["-Dclojure.main.report=stderr"]}})