-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathproject.clj.bak
More file actions
15 lines (15 loc) · 706 Bytes
/
project.clj.bak
File metadata and controls
15 lines (15 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(defproject diehard "0.11.4-SNAPSHOT"
:description "Safety utilities for Clojure"
:url "http://github.com/sunng87/diehard"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.11.1"]
[dev.failsafe/failsafe "3.2.4"]
[org.clojure/spec.alpha "0.3.218"]]
:plugins [[lein-codox "0.10.8"]
[lein-eftest "0.5.9"]]
:codox {:output-path "docs/"
:source-uri "https://github.com/sunng87/diehard/blob/master/{filepath}#L{line}"
:metadata {:doc/format :markdown}}
:deploy-repositories {"releases" :clojars}
:global-vars {*warn-on-reflection* true})