forked from oscaro/clj-gcloud-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
29 lines (29 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
(defproject com.oscaro/clj-gcloud-storage "0.172-2.0-SNAPSHOT"
:description "Clojure wrapper for google-cloud-storage Java client"
:url "https://github.com/oscaro/clj-gcloud-storage"
:license {:name "Eclipse Public License"
:url "https://www.eclipse.org/legal/epl-v10.html"}
:deploy-repositories [["snapshots" {:url "https://repo.clojars.org"
:username :env/clojars_username
:password :env/clojars_password
:sign-releases false}]
["releases" {:url "https://repo.clojars.org"
:creds :gpg}]]
:managed-dependencies
;; Google “Bill of Materials” (BOM) defines a combination of
;; dependency versions that work well with each other.
[[com.google.cloud/google-cloud-bom "0.172.0"
:extension "pom"
:scope "import"]
[com.google.cloud/google-cloud-shared-dependencies "2.10.0"
:extension "pom"
:scope "import"]]
:dependencies [[org.clojure/clojure "1.11.1"]
[com.oscaro/clj-gcloud-common "0.172-1.0"]
[com.google.cloud/google-cloud-storage "2.6.1"]
[org.clojure/tools.logging "1.2.4"]]
:global-vars {*warn-on-reflection* true}
:profiles {:dev {:source-paths ["dev"]
:dependencies [[org.clojure/tools.namespace "1.2.0"]
[com.google.cloud/google-cloud-nio "0.123.28"]]}}
:repl-options {:init-ns user})