-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathproject.clj
38 lines (30 loc) · 1.5 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
(defproject ovotech/clj-gcp "0.6.15"
:description "Clojure utilities for the Google Cloud Platform"
:url "https://github.com/ovotech/clj-gcp"
:license {:name "Eclipse Public License"
:url "https://www.eclipse.org/legal/epl-v10.html"}
:dependencies [;;;
[cheshire "5.10.0"]
[clj-commons/fs "1.6.307"]
[com.google.cloud/google-cloud-pubsub "1.110.3"]
[com.google.oauth-client/google-oauth-client "1.31.4"]
[com.google.cloud/google-cloud-storage "1.113.8"
:exclusions [com.google.oauth-client/google-oauth-client]]
[digest "1.4.10"]
[iapetos "0.1.8"]
[integrant "0.8.0"]
[medley "1.3.0"]
[metosin/ring-http-response "0.9.1"]
[org.clojure/clojure "1.10.1"]
[org.clojure/spec.alpha "0.2.194"]
[org.clojure/tools.logging "1.1.0"]]
;;;
:test-selectors {:default (complement :integration)
:integration :integration}
:profiles {:dev {:dependencies [[expound "0.8.7"]]
:plugins [[lein-ancient "0.6.15"]]}
:ci {:deploy-repositories
[["clojars" {:url "https://clojars.org/repo"
:username :env ;; LEIN_USERNAME
:password :env ;; LEIN_PASSWORD
:sign-releases false}]]}})