generated from strojure/library-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
20 lines (17 loc) · 1.13 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject com.github.strojure/ring-control "1.0.60-SNAPSHOT"
:description "More controllable composition of Ring middlewares."
:url "https://github.com/strojure/ring-control"
:license {:name "The Unlicense" :url "https://unlicense.org"}
:dependencies []
:profiles {:provided {:dependencies [[org.clojure/clojure "1.11.1"]
;; ring middlewares to provide configs for
[ring/ring-anti-forgery "1.3.0"]
[ring/ring-core "1.9.6"]
[ring/ring-devel "1.9.6"]
[ring/ring-headers "0.3.0"]
[ring/ring-ssl "0.3.0"]
;; required for `ring.middleware.multipart-params`
[javax.servlet/javax.servlet-api "4.0.1"]]}
:dev,,,,, {:dependencies [[ring/ring-defaults "0.3.4"]]
:source-paths ["doc"]}}
:deploy-repositories [["clojars" {:url "https://clojars.org/repo" :sign-releases false}]])