This repository has been archived by the owner on Dec 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathproject.clj
59 lines (50 loc) · 2.78 KB
/
project.clj
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
(defproject org.zalando.stups/friboo "2.0.0-beta7-SNAPSHOT"
:description "An utility library to write microservices in clojure."
:url "https://github.com/zalando/friboo"
:license {:name "Apache 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0"
:distribution :repo}
:scm {:url "[email protected]:zalando/friboo.git"}
:min-lein-version "2.0.0"
:java-source-paths ["java"]
:dependencies [[org.clojure/clojure "1.8.0"]
[org.zalando/swagger1st "0.24.0" :exclusions [org.apache.httpcomponents/httpcore]]
[org.zalando.stups/txdemarcator "0.7.0"]
[com.stuartsierra/component "0.3.1"]
[digest "1.4.5"]
[ring "1.5.0"]
[org.eclipse.jetty/jetty-servlet "9.2.10.v20150310"] ; needs to be in sync with ring dependency
[amalloy/ring-gzip-middleware "0.1.3"]
[environ "1.1.0"]
[com.jolbox/bonecp "0.8.0.RELEASE" :exclusions [com.google.guava/guava]]
[org.flywaydb/flyway-core "4.0.3"]
[amazonica "0.3.77" :exclusions [org.apache.httpcomponents/httpclient joda-time]]
[org.clojure/data.codec "0.1.0"]
[overtone/at-at "1.2.0"]
[org.zalando.stups/tokens "0.9.9"]
[com.netflix.hystrix/hystrix-clj "1.5.8"]
[com.netflix.hystrix/hystrix-core "1.5.8"]
[com.netflix.hystrix/hystrix-metrics-event-stream "1.5.8"]
[org.clojure/core.incubator "0.1.4"]
[metrics-clojure "2.7.0" :exclusions [io.dropwizard.metrics/metrics-core]]
[io.dropwizard.metrics/metrics-servlets "3.1.2"]
[org.slf4j/slf4j-api "1.7.21"]
[com.fasterxml.jackson.core/jackson-core "2.8.5"]
[com.fasterxml.jackson.core/jackson-databind "2.8.5"]
[org.apache.httpcomponents/httpclient "4.5.2"]
[org.clojure/core.memoize "0.5.9"]
[commons-codec "1.10"]
[com.newrelic.agent.java/newrelic-api "3.33.0"]
[io.clj/logging "0.8.1"]]
:plugins [[lein-cloverage "1.0.9"]
[lein-environ "1.1.0"]
[lein-marginalia "0.9.0"]]
:pom-addition [:developers
[:developer {:id "sarnowski"}
[:name "Tobias Sarnowski"]
[:email "[email protected]"]
[:role "Maintainer"]
[:timezone "+1"]]]
:aliases {"cloverage" ["with-profile" "test" "cloverage"]}
:deploy-repositories {"releases" {:url "https://oss.sonatype.org/service/local/staging/deploy/maven2/" :creds :gpg}
"snapshots" {:url "https://oss.sonatype.org/content/repositories/snapshots/" :creds :gpg}})