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'
}
}