leiningen

zendevil.eth 2022-01-06T11:36:22.000300Z

It worked with the alias

zendevil.eth 2022-01-06T11:36:53.001300Z

When I run lein run -m user, does it run the dev ns or the test ns because both have the same name?

2022-01-07T15:12:38.003500Z

You would want to ensure you do not put non-unique classnames on the classpath at the same time. You can manage that by being more careful with the :source-paths you specify for the profile.

2022-01-07T15:13:49.003700Z

so for the testing run, you could do something where you did not include the “dev” path

:source-paths ["test"]
Or use ^:replace metadata with all the explicit source paths if you need to fully override it

FiVo 2022-01-06T12:30:04.003200Z

Hey, have not used leiningen in a while. Is there an equivalent of :local/root to point at another local leiningen project in leiningen?

vemv 2022-01-06T14:28:52.003300Z

see "lein checkouts"