leiningen

N.B. The maintainers are on #leiningen on Libera chat IRC. Go there for direct support/bug reports.
2020-11-25T09:46:25.120800Z

Hi! I'm trying to create an alias which sets an additional profile before running, but does not overwrite profiles. i.e. lein test => lein with-profile +test eftest but lein with-profile +custom,-other test => lein with-profile +test,+custom,-other eftest :aliases {"test" ["with-profile" "+test" "eftest"]} handles the first correctly, but fails at the second one :aliases {"test" ["do" "eftest"]} handles the second case, not the first one

2020-11-25T17:20:34.121600Z

Plugins usually use :eval-in-leiningen, to prevent polluting the classpath of the project. How can i bump a dependency of a plugin?