<div dir="ltr">I'm using :mvn ASDF components and ran into a problem with having multiple versions of the same library. The issue boils down to the fact that ABCL currently processes dependencies for :mvn components one at a time, which doesn't take into account mutual dependencies. Attached is a function resolve-multiple-maven-dependencies, which takes a set of maven components and computes the dependencies. As an example, here is a comparison of treating the dependencies individually vs at once.<div><br></div><div><div>(length (mapcan 'resolve-multiple-maven-dependencies</div><div><span class="gmail-Apple-tab-span" style="white-space:pre">              </span> '(("net.sourceforge.owlapi:owlapi-distribution:4.2.6")</div><div><span class="gmail-Apple-tab-span" style="white-space:pre">          </span>   ("net.sourceforge.owlapi:org.semanticweb.hermit:1.3.8.413")</div><div><span class="gmail-Apple-tab-span" style="white-space:pre">              </span>   ("org.semanticweb.elk/elk-reasoner/0.4.3")</div><div><span class="gmail-Apple-tab-span" style="white-space:pre">               </span>   ("net.sourceforge.owlapi/pellet-cli-ignazio1977/2.4.0-ignazio1977")</div><div><span class="gmail-Apple-tab-span" style="white-space:pre">              </span>   ("net.sourceforge.owlapi/owlexplanation/2.0.0"))))</div><div>-> 210</div></div><div><br></div><div><div>(length (mapcan 'resolve-multiple-maven-dependencies</div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                </span> '(("net.sourceforge.owlapi:owlapi-distribution:4.2.6"</div><div><span class="gmail-Apple-tab-span" style="white-space:pre">           </span>    "net.sourceforge.owlapi:org.semanticweb.hermit:1.3.8.413"</div><div><span class="gmail-Apple-tab-span" style="white-space:pre">              </span>    "org.semanticweb.elk/elk-reasoner/0.4.3"</div><div><span class="gmail-Apple-tab-span" style="white-space:pre">               </span>    "net.sourceforge.owlapi/pellet-cli-ignazio1977/2.4.0-ignazio1977"</div><div><span class="gmail-Apple-tab-span" style="white-space:pre">              </span>    "net.sourceforge.owlapi/owlexplanation/2.0.0"))))</div></div><div><br></div><div>-> 90</div><div><br></div><div>In particular there are several versions of owlapi-distribution that are put on the classpath. Which one is actually used is not easily predictable. In my case even though I specified version 4.2.6 in my system definition, 4.1.3 was actually used.  </div><div><br></div><div>The attached code also has features not yet supported by the :mvn syntax that are really needed: The ability to override versions of a particular dependency that a downstream dependency specifies, and the ability to exclude certain artifacts altogether.</div><div><br></div><div>Mark has suggested that the maven resolution could be moved to the ASDF planning stage, which sounds like a good idea. However there is still an issue regarding maven dependencies in different loaded ASDF systems. One idea is to remember dependencies  across systems and then uses them as constraints on subsequent maven resolutions. </div><div><br></div><div>Comments and ideas would be appreciated.</div><div><br></div><div>Alan</div></div>