This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-07-06
Channels
- # aleph (1)
- # announcements (3)
- # asami (32)
- # aws (12)
- # babashka (6)
- # beginners (43)
- # calva (36)
- # cider (3)
- # clj-kondo (3)
- # cljs-dev (2)
- # clojars (6)
- # clojure (66)
- # clojure-europe (14)
- # clojure-uk (2)
- # clojurescript (12)
- # conjure (1)
- # core-async (27)
- # cursive (17)
- # data-science (9)
- # datahike (1)
- # datomic (28)
- # emacs (34)
- # events (1)
- # girouette (3)
- # jobs (1)
- # klipse (4)
- # lsp (26)
- # malli (5)
- # off-topic (38)
- # portal (1)
- # releases (1)
- # shadow-cljs (72)
- # sql (7)
- # tools-deps (5)
- # vim (9)
- # xtdb (18)
I’d like to use azure-functions’ maven tooling to run and deploy clojure code on their azure-functions framework. Right now I’m copying deps from deps.edn to the pom.xml so that my dependencies are available to the azure-functions environment. What is currently possible for syncing dependencies from deps.edn to pom.xml? Or, perhaps I should use b/write-pom
and refer to my clojure code as a module from a parent pom.xml
you can generate a pom from your deps.edn
clj -X:deps mvn-pom
this functionality will use a pom.xml as the source (if it exists) and update only specific sections (<dependencies>, path stuff, repositories) - the rest is left as is so you can put all your pom metadata there