Fork me on GitHub
#leiningen
<
2020-10-01
>
Yehonathan Sharvit12:10:39

Could someone explain me what’s the meaning of sentences like the one below, displayed by leiningen, when running lein :deps

Tried to load org.jsoup/jsoup version 1.13.1 but 1.11.3 was already loaded.

mikerod15:10:25

@viebel coming from this:

# leiningen.core.classpath/warn-conflicts
"When using the bootclasspath (for boot speed), resources already on the
  bootclasspath cannot be overridden by plugins, so notify the user about it."
I believe

mikerod15:10:47

so this org.jsoup/jsoup is on your bootclasspath

mikerod15:10:14

so any way it is trying to come in otherwise is being disregarded - meaning the bootclasspath one version is the one that is used

mikerod15:10:33

this is how I interpret it - not famliiar with seeing this issue come up for me personally though.

mikerod15:10:45

looks like perhaps this warning has been pushed to :pendantic? mode only now https://github.com/technomancy/leiningen/commit/1a502050c7c0bdb95f1da2382a8ec64ccde74e36

mikerod15:10:55

but again, haven’t verified any of this beyond quick look