-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
23 lines (23 loc) · 1.04 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
(defproject alumbra/errors "0.1.2-SNAPSHOT"
:description "Human-readable Errors for Alumbra."
:url "https://github.com/alumbra/alumbra.errors"
:license {:name "MIT License"
:url "https://opensource.org/licenses/MIT"
:year 2017
:key "mit"}
:dependencies [[org.clojure/clojure "1.9.0-alpha14" :scope "provided"]
[alumbra/spec "0.1.6" :scope "provided"]
[selmer "1.10.7"]]
:profiles {:dev
{:dependencies
[[org.clojure/test.check "0.9.0"]]}
:codox
{:plugins [[lein-codox "0.10.3"]]
:dependencies [[codox-theme-rdash "0.1.2"]]
:codox {:project {:name "alumbra.errors"}
:metadata {:doc/format :markdown}
:themes [:rdash]
:source-uri "https://github.com/alumbra/alumbra.errors/blob/v{version}/{filepath}#L{line}"
:namespaces [alumbra.errors]}}}
:aliases {"codox" ["with-profile" "+codox" "codox"]}
:pedantic? :abort)