-
Notifications
You must be signed in to change notification settings - Fork 4
/
project.clj
17 lines (17 loc) · 918 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defproject threatgrid/ring-jwt-middleware "1.1.7-SNAPSHOT"
:description "A simple middleware to deal with JWT Authentication"
:pedantic? :abort
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo}
:url "http://github.com/threatgrid/ring-jwt-middleware"
:deploy-repositories [["releases" {:url "https://clojars.org/repo" :creds :gpg}]
["snapshots" {:url "https://clojars.org/repo" :creds :gpg}]]
:dependencies [[org.clojure/clojure "1.10.3"]
[threatgrid/clj-jwt "0.3.1"]
[org.clojure/tools.logging "1.0.0"]
[metosin/ring-http-response "0.9.1"]
[prismatic/schema "1.1.12"]
[metosin/schema-tools "0.12.3"]]
:profiles {:dev {:pedantic? :warn
:dependencies [[clojure.java-time "0.3.3"]]}})