Не работает проект с дополнением OpenID Connect

Ошибка следующая

Could not resolve all files for configuration ‘:compileClasspath’.
Could not find any version that matches net.minidev:json-smart:[1.3.3,2.4.10].
Versions that do not match: 2.5.2
Searched in the following locations:
- https://repo.maven.apache.org/maven2/net/minidev/json-smart/maven-metadata.xml
- https://global.repo.jmix.io/repository/public/net/minidev/json-smart/maven-metadata.xml
Required by:
project : > io.jmix.bom:jmix-bom:1.6.1 > com.nimbusds:oauth2-oidc-sdk:9.43.4

Видимо, не работает репозиторий https://global.repo.jmix.io/repository/public/net/minidev/json-smart/maven-metadata.xml

Помогло установить в gradle
bomVersion = ‘1.5.0’

Это глобальный сбой, вызванный битыми метаданными в Maven Central после публикации очередной версии библиотеки json-smart.

С подробностями можете ознакомиться здесь: 2.5.2 Release Breaking Upstream Dependencies · Issue #240 · netplex/json-smart-v2 · GitHub

Как workaround, нам вроде помогло добавить в build.gradle следующую строчку:

implementation 'net.minidev:json-smart:2.4.10'