-
Notifications
You must be signed in to change notification settings - Fork 6
/
project.clj
21 lines (21 loc) · 970 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject io.aviso/config "0.2.4"
:description "Configure a Clojure system with EDN files"
:url "https://github.com/AvisoNovate/config"
:license {:name "Apache Sofware License 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0.html"}
:profiles {:dev
{:dependencies [[speclj "3.3.2"]
[org.clojure/test.check "0.9.0"]
[io.aviso/logging "0.2.0"]
[criterium "0.4.4"]]}}
:dependencies [[org.clojure/clojure "1.9.0"]
[com.stuartsierra/component "0.3.2"]]
:plugins [[speclj "3.3.2"]
[lein-codox "0.10.2"]]
:aliases {"release" ["do"
"clean,"
"spec,",
"deploy" "clojars"]}
:test-paths ["spec"]
:codox {:source-uri "https://github.com/AvisoNovate/config/blob/master/{filepath}#L{line}"
:metadata {:doc/format :markdown}})