This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-09-07
Channels
- # 100-days-of-code (1)
- # announcements (10)
- # aws (2)
- # beginners (134)
- # calva (25)
- # cider (29)
- # cljs-dev (43)
- # clojure (130)
- # clojure-dusseldorf (3)
- # clojure-italy (27)
- # clojure-nl (48)
- # clojure-spec (32)
- # clojure-uk (63)
- # clojurescript (75)
- # core-logic (5)
- # cursive (18)
- # datascript (2)
- # datomic (37)
- # emacs (5)
- # figwheel (13)
- # figwheel-main (55)
- # graphql (1)
- # java (7)
- # jobs (11)
- # jobs-discuss (19)
- # juxt (1)
- # leiningen (16)
- # luminus (10)
- # mount (3)
- # off-topic (40)
- # om (1)
- # onyx (1)
- # pedestal (7)
- # re-frame (40)
- # reagent (81)
- # ring (2)
- # shadow-cljs (32)
- # spacemacs (5)
- # testing (1)
- # tools-deps (48)
"Could not read the old stale value for leiningen.core.classpath.extract-native-dependencies , rerunning stale task" - what is that and how to get rid of it? I'm getting this message repeated 4-5 times when starting repl in every project
is it expected that a lein plugin should include all of its plugins as dependencies in its pom?
even if they're in the dev profile?
(I wouldn't expect it in either case, but it seems to be true in both)
oh wait I think I know what's causing it
@gfredericks I don’t think you should need them beyond the profile at all
yeah, the problem was I have a dev plugin (different plugin) that does an (update project :dependencies conj [...])
in its middleware function, and I hadn't considered that this effectively makes that dependency a first class dep
I don't think there's a clean way for a plugin to add a dev dependency
unless maven scopes can be set without using profiles?
hmm; I tried (update project :dependencies conj [foo/bar "blah" :scope "test"])
, but lein pom
in the project using that plugin still has the dependency in the pom
the plugin doesn't have its own profile
is probably part of the problem