juxt

alidlorenzo 2020-06-07T18:58:26.152600Z

when using Pack to publish to Clojars, I’m suppose to do --no-libs correct? if I have a project with :local/root deps, that command seems to ignore my local dependencies as well. so not sure what the right approach is here. (ref: https://github.com/juxt/pack.alpha/issues/82)

dominicm 2020-06-07T19:33:18.154500Z

@alidcastano if they're libraries (local or otherwise) then you should publish them by themselves.

dominicm 2020-06-07T19:33:50.155500Z

Things will not work, even if pack inlined the local dependency for you, the pom would reference things that don't exist.

alidlorenzo 2020-06-07T21:39:28.155700Z

ah, so as a git dependency this works since root deps.edn has the two nested modules as local/root deps. I imagined that something similar could be achieved with pack, i.e. the classpaths for the nested local/root deps are be found and packaged