-
Notifications
You must be signed in to change notification settings - Fork 92
/
project.clj
29 lines (26 loc) · 1.45 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
(defproject basic-microservice-example "0.0.1-SNAPSHOT"
:description "Very simplistic example of how nubank organizes and tests microservices"
:url "https://github.com/nubank/basic-microservice-example"
:license {:name "Apache License, Version 2.0"}
:plugins [[lein-midje "3.2.1"]]
:dependencies [[org.clojure/clojure "1.9.0"]
[io.pedestal/pedestal.service "0.5.3"]
[io.pedestal/pedestal.jetty "0.5.3"]
[http-kit "2.2.0"]
[com.stuartsierra/component "0.3.2"]
[prismatic/schema "1.1.7"]
[cheshire "5.8.0"]
[io.aviso/pretty "0.1.34"]
[ch.qos.logback/logback-classic "1.1.8" :exclusions [org.slf4j/slf4j-api]]
[org.slf4j/jul-to-slf4j "1.7.22"]
[org.slf4j/jcl-over-slf4j "1.7.22"]
[org.slf4j/log4j-over-slf4j "1.7.22"]]
:min-lein-version "2.0.0"
:resource-paths ["config", "resources"]
:profiles {:dev {:aliases {"run-dev" ["trampoline" "run" "-m" "basic-microservice-example.server/run-dev"]}
:dependencies [[midje "1.9.1"]
[nubank/selvage "0.0.1"]
[nubank/matcher-combinators "0.2.4"]
[io.pedestal/pedestal.service-tools "0.5.3"]]}
:uberjar {:aot [basic-microservice-example.server]}}
:main ^{:skip-aot true} basic-microservice-example.server)