-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathproject.clj
66 lines (55 loc) · 2.63 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
60
61
62
63
64
65
66
(defproject org.zalando.stups/kio "0.25.0-SNAPSHOT"
:description "The application registry."
:url "https://github.com/zalando-stups/kio"
:license {:name "The Apache License, Version 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0"}
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.10.0"]
[org.apache.logging.log4j/log4j-api "2.17.0"]
[org.apache.logging.log4j/log4j-core "2.17.0"]
[org.apache.logging.log4j/log4j-slf4j-impl "2.17.0"]
[org.apache.logging.log4j/log4j-jcl "2.17.0"]
[org.apache.logging.log4j/log4j-1.2-api "2.17.0"]
[org.apache.logging.log4j/log4j-jul "2.17.0"]
[org.zalando.stups/friboo "1.13.0"]
[clj-time "0.13.0"]
[org.zalando.stups/tokens "0.11.0-beta-2"]
[yesql "0.5.3"]
[org.clojure/core.memoize "0.7.1"]]
:managed-dependencies [[org.flatland/ordered "1.5.7"]
[marick/suchwow "6.0.2"]]
:main ^:skip-aot org.zalando.stups.kio.core
:uberjar-name "kio.jar"
:plugins [[io.sarnowski/lein-docker "1.1.0"]
[org.zalando.stups/lein-scm-source "0.3.0"]
[lein-cloverage "1.0.7-SNAPSHOT"]]
:docker {:image-name #=(eval (str (some-> (System/getenv "DEFAULT_DOCKER_REGISTRY")
(str "/"))
"stups/kio"))}
:release-tasks [["vcs" "assert-committed"]
["clean"]
["test"]
["change" "version" "leiningen.release/bump-version" "release"]
["vcs" "commit"]
["vcs" "tag"]
["uberjar"]
["scm-source"]
["docker" "build"]
["docker" "push"]
["change" "version" "leiningen.release/bump-version"]
["vcs" "commit"]
["vcs" "push"]]
:pom-addition [:developers
[:developer {:id "sarnowski"}
[:name "Tobias Sarnowski"]
[:email "[email protected]"]
[:role "Maintainer"]]]
:test-selectors {:default :unit
:unit :unit
:integration :integration}
:profiles {:uberjar {:aot :all}
:dev {:repl-options {:init-ns user}
:source-paths ["dev"]
:dependencies [[org.clojure/tools.namespace "0.2.10"]
[midje "1.9.8"]
[org.clojure/java.classpath "0.2.3"]]}})