
After update I get the following error
Build file 'F:\Bio4\build.gradle' line: 24
A problem occurred evaluating root project 'Bio4'.
> Could not get unknown property premiumRepoUser for root project 'Bio4' of type org.gradle.api.Project.
the part of the gradle file with the premiumRepoUser
repositories {
mavenCentral()
maven {
url = 'https://global.repo.jmix.io/repository/public'
}
maven {
url = 'https://global.repo.jmix.io/repository/premium'
credentials {
username = rootProject['premiumRepoUser']
password = rootProject['premiumRepoPass']
}
}
maven {
url = 'https://repo.osgeo.org/repository/release'
}
// Dependencies for coordinates conversion
//maven {
// url 'https://repo.osgeo.org/repository/release'
//}
}
What did I wrong ?
Best regards
Felix