-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
49 lines (37 loc) · 1.02 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
(defproject kube-api/kube-api "0.1.0-SNAPSHOT"
:description
"A set of Kubernetes libraries for Clojure."
:url
"https://github.com/rutledgepaulv/kube-api"
:license
{:name "MIT License" :url "http://opensource.org/licenses/MIT" :year 2020 :key "mit"}
:scm
{:name "git" :url "https://github.com/rutledgepaulv/kube-api"}
:pom-addition
[:developers
[:developer
[:name "Paul Rutledge"]
[:url "https://github.com/rutledgepaulv"]
[:email "rutledgepaulv@gmail.com"]
[:timezone "-5"]]]
:deploy-repositories
[["releases" :clojars] ["snapshots" :clojars]]
:source-paths
[]
:test-paths
[]
:dependencies
[[kube-api/kube-api-core "0.1.2-SNAPSHOT"]
[kube-api/kube-api-io "0.1.0-SNAPSHOT"]
[kube-api/kube-api-controllers "0.1.0-SNAPSHOT"]]
:plugins
[[lein-sub "0.3.0"]]
:sub
["kube-api-test"
"kube-api-core"
"kube-api-controllers"
"kube-api-io"]
:aliases
{"test" ["sub" "test"]
"deploy-all" ["do" "deploy," "sub" "deploy"]
"install" ["sub" "install"]})