leiningen

N.B. The maintainers are on #leiningen on Libera chat IRC. Go there for direct support/bug reports.
2019-03-22T15:48:19.096100Z

Is this sort of thing make-workable?

lein update-in :plugins conj '[lein-ancient "0.6.15"]' ancient
I get
Exception in thread "main" java.lang.AssertionError: Assert failed: (every? vector? (get project dependencies-key))
        at leiningen.core.classpath$get_dependencies_STAR_.invokeStatic(classpath.clj:265)
        at leiningen.core.classpath$get_dependencies_STAR_.invoke(classpath.clj:265)
...

dpsutton 2019-03-22T15:56:53.096500Z

@gfredericks put -- before update-in ?

greglook 2019-03-22T15:57:23.097Z

it’s also conjing the symbol ancient

greglook 2019-03-22T15:57:44.097400Z

-- needs to be before ancient

2019-03-22T15:58:14.097600Z

oooooh righto

2019-03-22T16:00:58.098100Z

yep, works; thanks @dpsutton @greg316