-
Notifications
You must be signed in to change notification settings - Fork 26
/
project.clj
45 lines (42 loc) · 2.03 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
(defproject de.otto/tesla-microservice "0.17.7-SNAPSHOT"
:description "basic microservice."
:url "https://github.com/otto-de/tesla-microservice"
:license {:name "Apache License 2.0"
:url "http://www.apache.org/license/LICENSE-2.0.html"}
:scm {:name "git"
:url "https://github.com/otto-de/tesla-microservice"}
:repositories [["releases" {:url "https://repo.clojars.org"
:creds :gpg}]]
:dependencies [[org.clojure/data.json "2.4.0"]
[org.clojure/tools.logging "1.2.4"]
[de.otto/status "0.1.3"]
[de.otto/goo "1.2.12"]
[clojure.java-time "1.2.0"]
[clojurewerkz/propertied "1.3.0"]
[com.stuartsierra/component "1.1.0"]
[compojure "1.7.0"]
[environ "1.2.0"]
[overtone/at-at "1.2.0"]
[ring/ring-core "1.9.6"]
[ring/ring-devel "1.9.6"]
[ring-basic-authentication "1.1.1"]]
:exclusions [org.clojure/clojure
org.slf4j/slf4j-nop
org.slf4j/slf4j-log4j12
log4j
commons-logging/commons-logging]
:lein-release {:deploy-via :clojars}
:filespecs [{:type :path :path "test-utils"}]
:test-selectors {:default (constantly true)
:integration :integration
:unit :unit
:all (constantly true)}
:profiles {:uberjar {:aot :all}
:dev {:dependencies [[org.clojure/clojure "1.11.1"]
[org.slf4j/slf4j-api "2.0.6"]
[ch.qos.logback/logback-core "1.4.5"]
[ch.qos.logback/logback-classic "1.4.5"]
[ring-mock "0.1.5"]
[org.clojure/data.codec "0.1.1"]]
:plugins [[lein-release/lein-release "1.0.9"]]}}
:test-paths ["test" "test-resources" "test-utils"])