<span>On Thu, May 4, 2017 at 12:01 PM, Alan Ruttenberg <</span><a href="mailto:alanruttenberg@gmail.com" target="_blank">alanruttenberg@gmail.com</a><span>> wrote:</span><br><span>
> Resolving the maven dependencies in java needs to be a globally done across</span><br><span>
> ASDF systems. If one ASDF system A depends on log4j version 2.1 or higher</span><br><span>
> and another B depends on 2.9, and the range of versions is 2.1-2.12 then if</span><br><span>
> A is loaded first there is no way to satisfy the second dependence in a</span><br><span>
> predictable way. If you choose the highest available version A can take it</span><br><span>
> is too high for B. If you choose the lowest A can choose it is too low for</span><br><span>
> B.</span><br><span>
></span><br><span>
The best I can see you do with ASDF is as follows:</span><br><span>
</span><br><span>
0- Aim for a single coherent set of jars within a given build, because otherwise lies madness.</span><br><span>
</span><br><span>
1- Within a given plan-then-perform phase, collect the set of jars and their version intervals in a :before method on perform-plan that talks to maven and uses some heuristic to resolve versions.</span><br><span>
</span><br><span>
2- Across plan-then-perform phases of a same build session, record which versions were loaded, and issue an error if it's incompatible.</span><br><span>
</span><br><span>
3- Across build sessions, remember what version was previously loaded, and unload/shadow it if it is incompatible (or throw an error if you can't), and decide whether to keep or upgrade (if possible) if it's compatible.</span><br><span>
</span><br><span>
As to writing a system that solves issues across phases, in your worst case, your toplevel system would :defsystem-depends-on a system that loads all the proper versions of all the jar files (or at least the problematic ones), and then whichever phase causes some version to be loaded will have been preempted by that first defsystem-depends-on system.</span><br><span>
</span><br><span>
Which reminds me that load-systems should be amended to do only one plan-then-perform phase for all the requested systems.</span><br><span>
</span><br><span>—♯ƒ • François-René ÐVB Rideau •Reflection&Cybernethics•</span><span> </span><a href="http://fare.tunes.org" rel="noreferrer" target="_blank">http://fare.tunes.org</a><br><span>Anyone who says he can see through women is missing a lot. — Groucho Marx</span><br><br><span>
</span>