-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.clj
26 lines (26 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
(defproject org.cyverse/mescal "4.0.1-SNAPSHOT"
:description "A Clojure client library for the Agave API."
:url "https://github.com/cyverse-de/mescal"
:license {:name "BSD Standard License"
:url "http://www.iplantcollaborative.org/sites/default/files/iPLANT-LICENSE.txt"}
:deploy-repositories [["releases" :clojars]
["snapshots" :clojars]]
:dependencies [[org.clojure/clojure "1.11.3"]
[cheshire "5.13.0"]
[clj-http "3.13.0"]
[clj-time "0.15.2"]
[com.cemerick/url "0.1.1" :exclusions [com.cemerick/clojurescript.test]]
[medley "1.4.0"]
[me.raynes/fs "1.4.6"]
[org.cyverse/authy "3.0.1"]
[org.cyverse/clojure-commons "3.0.8"]
[org.cyverse/service-logging "2.8.4"]
[slingshot "0.12.2"]]
:eastwood {:exclude-namespaces [mescal.de :test-paths]
:linters [:wrong-arity :wrong-ns-form :wrong-pre-post :wrong-tag :misplaced-docstrings]}
:profiles {:repl {:source-paths ["src" "repl/src"]
:resource-paths ["repl/resources"]}}
:plugins [[jonase/eastwood "1.4.3"]
[lein-ancient "0.7.0"]
[lein-cljfmt "0.9.2"]
[test2junit "1.4.4"]])