-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
27 lines (27 loc) · 1.52 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
(defproject dev.gethop/notifications.firebase "0.1.15-SNAPSHOT"
:description "A duct library for managing notifications with Firebase Cloud Messaging"
:url "http://github.com/gethop-dev/notifications.firebase"
:min-lein-version "2.9.8"
:license {:name "Mozilla Public License 2.0"
:url "https://www.mozilla.org/en-US/MPL/2.0/"}
:dependencies [[org.clojure/clojure "1.12.0"]
[duct/logger "0.3.0"]
[integrant "0.8.0"]
[com.google.firebase/firebase-admin "9.4.1"]]
:deploy-repositories [["snapshots" {:url "https://clojars.org/repo"
:username :env/CLOJARS_USERNAME
:password :env/CLOJARS_PASSWORD
:sign-releases false}]
["releases" {:url "https://clojars.org/repo"
:username :env/CLOJARS_USERNAME
:password :env/CLOJARS_PASSWORD
:sign-releases false}]]
:profiles {:dev [:project/dev :profiles/dev]
:profiles/dev {}
:project/dev {:plugins [[jonase/eastwood "1.2.3"]
[lein-cljfmt/lein-cljfmt "0.8.0"]]}
:repl {:repl-options {:init-ns dev.gethop.notifications.firebase
:host "0.0.0.0"
:port 4001}}
:eastwood {:linters [:all]
:debug [:progress :time]}})