forked from weavejester/ring-anti-forgery
-
Notifications
You must be signed in to change notification settings - Fork 26
/
project.clj
20 lines (20 loc) · 953 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject ring/ring-anti-forgery "1.3.1"
:description "Ring middleware to prevent CSRF attacks"
:url "https://github.com/ring-clojure/ring-anti-forgery"
:license {:name "The MIT License"
:url "http://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.9.0"]
[crypto-random "1.2.1"]
[crypto-equality "1.0.1"]
[hiccup "1.0.5"]]
:plugins [[lein-codox "0.10.8"]]
:codox
{:output-path "codox"
:project {:name "Ring Anti-Forgery"}
:source-uri "http://github.com/ring-clojure/ring-anti-forgery/blob/{version}/{filepath}#L{line}"}
:aliases {"test-all" ["with-profile" "default:+1.10:+1.11:+1.12" "test"]}
:profiles
{:dev {:dependencies [[ring/ring-mock "0.4.0"]]}
:1.10 {:dependencies [[org.clojure/clojure "1.10.3"]]}
:1.11 {:dependencies [[org.clojure/clojure "1.11.3"]]}
:1.12 {:dependencies [[org.clojure/clojure "1.12.0-alpha9"]]}})