when displaying dependencies with `depmap,` is it ...
# general
b
when displaying dependencies with
depmap,
is it possible to show the dependencies classifiers ? I do
./pants bundle foo
and I get a warning
Duplicate classes and/or resources detected in artifacts: (a.jar, b.jar, b-classifier.jar, c.jar)
but when I do
./pants depmap foo --depmap-graph > graph.dot
and then
grep b graph.dot
only
b
appears (and not
b.jar
neither
b-classifier
). How can I track where the duplicates come from ? and is it possible to keep the lib jar names instead of the dependency target name with a dash and a number ? (what does this number means ? it looks like big library are chunked but then I have
lib-1.jar
,
lib-3.jar
,
lib-5.jar
and no trace of 2 or 4 … ) also I don't get what exactly clean
clean-all
. If I run
./pants clean-all
and then
./pants bundle foo
, foo is bundle but I don't see any recompilation.