How do you list transitive deps in boot? Put another way, say i declare that i want library A in by build.boot file, and library A then requires library B. I want a way to 1. find A given B 2. lock B at a given version regardless of A's version.
boot uses pomegranate, which uses maven's version selection which favors the top-most and first version found. so adding B at your desired version as a top-level dep should have that effect
The built-in command to list deps (including transitive ones) is boot show -d
Thanks Alex and dave, i appreciate the help!