Say I have a bunch of Java jars that all depend on each other locally in a folder. I want to depend on them from Clojure. So I add that folder to extra-paths. Now say one of those jars is a version of Jackson but I also directly depend on Jackson in my :deps. Will the generated class-path always put the version of Jackson from :deps beforethe extra-paths ?
Putting the path to the jars on the classpath doesn’t do anything
But :paths are always in front of :deps
You would really need to add these as local deps with path to the jar and you would then have to pick which one is the Jackson dep