-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathproject.clj
More file actions
18 lines (18 loc) · 866 Bytes
/
project.clj
File metadata and controls
18 lines (18 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject ring/ring-defaults "0.7.0"
:description "Ring middleware that provides sensible defaults"
:url "https://github.com/ring-clojure/ring-defaults"
:license {:name "The MIT License"
:url "http://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.9.0"]
[ring/ring-core "1.15.1"]
[ring/ring-ssl "0.4.0"]
[ring/ring-headers "0.4.0"]
[ring/ring-anti-forgery "1.4.0"]
[org.ring-clojure/ring-websocket-middleware "0.2.1"]]
:aliases
{"test-all" ["with-profile" "default:+1.10:+1.11:+1.12" "test"]}
:profiles
{:dev {:dependencies [[ring/ring-mock "0.6.2"]]}
:1.10 {:dependencies [[org.clojure/clojure "1.10.3"]]}
:1.11 {:dependencies [[org.clojure/clojure "1.11.4"]]}
:1.12 {:dependencies [[org.clojure/clojure "1.12.2"]]}})