Перестало запускаться приложение из среды разработки

Добрый день!
Сегодня возникла проблема при запуске приложения, хотя ничего не менялось и еще вчера приложение запускалось без проблем.

Ошибка:

FAILURE: Build failed with an exception.

*** What went wrong:**
Execution failed for task ‘:amara-web:compileJava’.
> Could not resolve all files for configuration ‘:amara-web:compileClasspath’.
** > Could not find any version that matches org.webjars.npm:domelementtype:[2.2.0,3).**
** Versions that do not match:**
** - 2.1.0**
** - 2.0.1**
** - 1.3.1**
** - 1.3.0**
** - 1.1.3**
** - + 2 more**
** Searched in the following locations:**
** - https://repo.cuba-platform.com/content/groups/work/org/webjars/npm/domelementtype/maven-metadata.xml**
** Required by:**
** project :amara-web > com.haulmont.addon.grapesjs:grapesjs-web:0.5.3 > org.webjars.npm:github-com-artf-grapesjs-preset-newsletter:0.2.20 > org.webjars.npm:juice:4.3.2 > org.webjars.npm:web-resource-inliner:4.3.4 > org.webjars.npm:htmlparser2:4.1.0 > org.webjars.npm:domutils:2.5.1**
** project :amara-web > com.haulmont.addon.grapesjs:grapesjs-web:0.5.3 > org.webjars.npm:github-com-artf-grapesjs-preset-newsletter:0.2.20 > org.webjars.npm:juice:4.3.2 > org.webjars.npm:web-resource-inliner:4.3.4 > org.webjars.npm:htmlparser2:4.1.0 > org.webjars.npm:domhandler:4.1.0**

*** Try:**
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

*** Get more help at https://help.gradle.org**

Версию платформы обновил до последней, репозиторий указан: https://repo.cuba-platform.com/content/groups/work

Вот buildscript:
buildscript {
ext.cubaVersion = ‘7.2.13’
repositories {
maven {
url ‘https://repo.cuba-platform.com/content/groups/work

        credentials {
            username(rootProject.hasProperty('repoUser') ? rootProject['repoUser'] : 'cuba')
            password(rootProject.hasProperty('repoPass') ? rootProject['repoPass'] : 'cuba123')
        }
    }


    }
dependencies {
    classpath "com.haulmont.gradle:cuba-plugin:$cubaVersion"
}

}

Пытался вручную добавить новую версию библиотеки, не помогло, хотя она добавилась.

implementation group: ‘org.webjars.npm’, name: ‘domelementtype’, version: ‘2.2.0’

Подскажите пожалуйста, в чем может быть проблема?

Дубликат темы Не собирается проект