generated from strojure/library-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
19 lines (16 loc) · 945 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(defproject com.github.strojure/ring-lib "1.2.4-63-SNAPSHOT"
:description "Opinionated implementations for Clojure ring handler."
:url "https://github.com/strojure/ring-lib"
:license {:name "The Unlicense" :url "https://unlicense.org"}
:dependencies [;; Delayed values in maps
[com.github.strojure/zmap "1.3.26"]
;; Request utils from undertow
[io.undertow/undertow-core "2.3.5.Final"]
;; Reuse standard ring implementations
[ring/ring-core "1.9.6"]
;; Use web-security implementations
[com.github.strojure/web-security "1.2.0-38"]]
:profiles {:provided {:dependencies [[org.clojure/clojure "1.11.1"]]}
:dev,,,,, {:dependencies [[ring/ring-defaults "0.3.4"]]
:source-paths ["doc"]}}
:deploy-repositories [["clojars" {:url "https://clojars.org/repo" :sign-releases false}]])