Warning about multiple occurrences of org.json.JSONObject
#32881
Labels
for: external-project
For an external project and not something we can fix
org.json.JSONObject
#32881
In essence, this is the same problem as #29387.
I ran into this while upgrading an application that uses Jedis as Redis driver to Spring Boot
3.0.0-RC1
:Since its
4.0.0
release, Jedis pulls inorg.json:json
as a transitive dependency. At the same time,com.vaadin.external.google:android-json
is pulled in byorg.skyscreamer:jsonassert
which in turn is a dependency ofspring-boot-starter-test
.At quick glance, Jedis usage of
org.json:json
is limited toorg.json.JSONArray
andorg.json.JSONObject
classes (both of which are offered bycom.vaadin.external.google:android-json
) so one might be tempted to simply excludeorg.json:json
, but at the same time there's no guarantee that Jedis won't start using something outside of those two in the future.The text was updated successfully, but these errors were encountered: