forked from yogsototh/clj-jwt
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.clj
17 lines (17 loc) · 881 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defproject threatgrid/clj-jwt "0.5.2-SNAPSHOT"
:description "Clojure library for JSON Web Token(JWT)"
:url "https://github.com/threatgrid/clj-jwt"
:pedantic? :abort
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/data.codec "0.1.1"]
[org.bouncycastle/bcpkix-jdk15on "1.68"]
[crypto-equality "1.0.0"]
[clj-time "0.15.2"]
[metosin/jsonista "0.2.6"]]
:profiles {:dev {:dependencies [[midje "1.9.9"]]}}
:global-vars {*warn-on-reflection* true}
:plugins [[lein-midje "3.2.1"]]
:deploy-repositories [["releases" {:url "https://clojars.org/repo" :creds :gpg}]
["snapshots" {:url "https://clojars.org/repo" :creds :gpg}]])