-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
18 lines (18 loc) · 1 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject clj-opa "0.2.0-SNAPSHOT"
:description "Clojure utilities and Ring middleware for app authorization using Open Policy Agent (OPA)"
:url "https://github.com/anderseknert/clj-opa"
:license {:name "Apache License 2.0"
:url "https://www.apache.org/licenses/LICENSE-2.0.html"}
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.11.1"]
[clj-http "3.12.3"]
[cheshire "5.11.0"]]
:deploy-repositories [["clojars" {:url "https://repo.clojars.org"
:username :env/clojars_username
:password :env/clojars_password
; TODO: fix at some point
:sign-releases false}]]
:profiles {:dev {:dependencies [[ring/ring-mock "0.4.0"]
[compojure "1.6.3"]]
:plugins [[lein-ancient "0.6.15"]
[com.github.clj-kondo/lein-clj-kondo "0.2.1"]]}})