This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-08-27
Channels
- # aleph (1)
- # announcements (5)
- # babashka (13)
- # beginners (68)
- # brompton (7)
- # calva (10)
- # cider (1)
- # clara (15)
- # cljsrn (2)
- # clojure (63)
- # clojure-austin (1)
- # clojure-europe (44)
- # clojure-france (2)
- # clojure-nl (5)
- # clojure-norway (1)
- # clojure-poland (1)
- # clojure-uk (8)
- # clojurescript (8)
- # clojureverse-ops (7)
- # conjure (13)
- # core-async (27)
- # cryogen (10)
- # cursive (17)
- # datomic (13)
- # deps-new (1)
- # events (1)
- # fulcro (3)
- # gratitude (4)
- # helix (6)
- # honeysql (6)
- # introduce-yourself (1)
- # jobs (2)
- # malli (13)
- # meander (9)
- # music (1)
- # news-and-articles (2)
- # off-topic (8)
- # pedestal (1)
- # reitit (4)
- # sci (25)
- # shadow-cljs (13)
- # spacemacs (2)
- # tools-build (5)
- # tools-deps (20)
- # vscode (50)
- # xtdb (2)
Hello people! I had a small question, don't know whether this is the correct channel to ask though. So kindly excuse me.
I have a deps.edn
file in my project root whose directory I am exposing via the env var CLJ_CONFIG
.
Now I am referring to a dependency in the root (`my/lib {:mvn/version "1.0.1"}`) inside another sub-project inside the root dir like this: my/lib {:mvn/version "_"}
Now I have to exclude a certain lib from it. But if I do my/lib {:mvn/version "_" :exclusions [my/lib-2]}
, it does not work. But it does work if I exclude it in the root deps.edn
file.
Now the problem with this is that I can't afford to do this in the root deps.edn
as it's affecting a lot of other projects.
So is it possible to somehow do it only for the sub-project I am interested in without making change to the root deps.edn
file?