-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
30 lines (29 loc) · 1.56 KB
/
project.clj
File metadata and controls
30 lines (29 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
(defproject uswitch/ring-middleware-logging "0.1.7"
:description "Ring wrappers to log requests and exception to clojure.tools/logging"
:url "https://github.com/uswitch/ring-middleware-logging"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.12.1"]
[compojure "1.7.1"]
[org.clojure/tools.logging "0.3.1"]
[org.apache.logging.log4j/log4j-core "2.25.1"]
[ring/ring-mock "0.3.0"]
;; this is a transitive depdendency of compojure. We
;; include it this way rather than
;; using :dependency-overrides as we are using Snyk
;; to test the pom.xml and the override is lost when
;; running lein pom
[org.apache.commons/commons-fileupload2-core "2.0.0-M4"]]
:plugins [[s3-wagon-private "1.3.4" :exclusions [commons-logging com.fasterxml.jackson.core/jackson-databind]]
[commons-logging "1.2"]
[com.fasterxml.jackson.core/jackson-databind "2.5.5"] ;; later versions cause trouble
]
:repositories {"s3-releases"
{:url "s3p://uswitch-internal-jars/releases"
:sign-releases false
:no-auth true}
"s3-snapshots"
{:url "s3p://uswitch-internal-jars/snapshots"
:sign-releases false
:no-auth true}}
:lein-release {:deploy-via "s3-releases"})