You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 25, 2024. It is now read-only.
I'm trying to build an app that contains spongycastle and zxing. I have spongycastle in my dependencies first, and then as soon as I add zxing classes from spongycastle are not found anymore. They both have a maven artifact with the artifactId "core", but different groupIds of course, hence think there is a conflict.
I changed the artifactId of zxing from "core" to "zxcore" and now it works. So it is definitely the artifactId that's the problem.
The text was updated successfully, but these errors were encountered:
I spent some 3 hours, blaming everything from clojure to leiningen, until I independently arrived at this ticket. Here is a clear demonstration of the issue: https://github.com/bendlas/lein-resolution-failure
thanks to @noisesmith for helping to narrow this down
we need a more intelligent grouping function. Just consdering artefacts with the same name to be equal is clearly insufficient. Maybe there should be a user-configurable replacement map that defines groups whose artefacts are "interchangeable".
I'm trying to build an app that contains spongycastle and zxing. I have spongycastle in my dependencies first, and then as soon as I add zxing classes from spongycastle are not found anymore. They both have a maven artifact with the artifactId "core", but different groupIds of course, hence think there is a conflict.
I changed the artifactId of zxing from "core" to "zxcore" and now it works. So it is definitely the artifactId that's the problem.
The text was updated successfully, but these errors were encountered: