-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
36 lines (27 loc) · 855 Bytes
/
project.clj
File metadata and controls
36 lines (27 loc) · 855 Bytes
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
(defproject kube-api/kube-api-test "0.1.0-SNAPSHOT"
:description
"A library for testing kubernetes libraries and applications from Clojure."
:url
"https://github.com/rutledgepaulv/kube-api/kube-api-test"
:license
{:name "MIT License" :url "http://opensource.org/licenses/MIT" :year 2020 :key "mit"}
:scm
{:dir ".."}
:pom-addition
[:developers
[:developer
[:name "Paul Rutledge"]
[:url "https://github.com/rutledgepaulv"]
[:email "rutledgepaulv@gmail.com"]
[:timezone "-5"]]]
:deploy-repositories
[["releases" :clojars]
["snapshots" :clojars]]
:dependencies
[[org.clojure/clojure "1.10.3"]
[clj-commons/clj-yaml "0.7.107"]
[org.testcontainers/testcontainers "1.16.2"]]
:repl-options
{:init-ns kube-api.test.core}
:profiles
{:dev {:dependencies [[org.slf4j/slf4j-simple "1.7.32"]]}})