Update to Jmix 2.0.2 removes custom repository

Hi team,

If a custom repository is included in build.gradle, after upgrade to Jmix 2.0.2, it will remove the repo. This is not expected.

For example, before upgrade:

repositories {
    mavenLocal()
    mavenCentral()
    maven {
        url = 'https://nexus.jmix.io/repository/public'
    }
    maven {
        url='https://maven.vaadin.com/vaadin-addons'
    }
}

after:

repositories {
    mavenLocal()
    mavenCentral()
    maven {
        url = 'https://nexus.jmix.io/repository/public'
    }
}

Hi

Thanks for your feedback!
Actually not only Jmix version update removes custom repository, but any Project Properties dialog saving.
YouTrack issue created, so you can follow progress.