-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
46 lines (38 loc) · 1.28 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
(defproject com.vodori/missing "0.1.29-SNAPSHOT"
:description
"A utility library for Clojure of functions and macros that are frequently missed and recreated."
:url
"https://github.com/vodori/missing"
:license
{:name "MIT License" :url "http://opensource.org/licenses/MIT" :year 2020 :key "mit"}
:scm
{:name "git" :url "https://github.com/vodori/missing"}
:pom-addition
[:developers
[:developer
[:name "Julia Cicale"]
[:url "https://github.com/jcicale"]
[:email "[email protected]"]
[:timezone "-5"]]
[:developer
[:name "Griffin Lacek"]
[:url "https://github.com/griffinlacek"]
[:email "[email protected]"]
[:timezone "-5"]]
[:developer
[:name "Paul Rutledge"]
[:url "https://github.com/rutledgepaulv"]
[:email "[email protected]"]
[:timezone "-5"]]
[:developer
[:name "Travis Stom"]
[:url "https://github.com/travisstom"]
[:email "[email protected]"]
[:timezone "-4"]]]
:deploy-repositories
{"releases" {:url "https://oss.sonatype.org/service/local/staging/deploy/maven2/" :creds :gpg}
"snapshots" {:url "https://oss.sonatype.org/content/repositories/snapshots/" :creds :gpg}}
:plugins
[[lein-cloverage "1.1.2"]]
:dependencies
[[org.clojure/clojure "1.10.1"]])