I’ve followed the instructions in the email we got, but when I get to the step where I put in the component coordinates, and click Install, I get “Unknown add-on coordinates. Probably Maven repository setup is required.” The add-on coordinates I’m using are “com.haulmont.addon.bproc:bproc-global:1.1.0.BETA1.trial” as instructed in the email.
I added the following lines to build.gradle (also as instructed in the email):
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')
}
}
maven {
url './repository'
}
The repository directory is in the project directory with the zip contents placed in it…also as instructed.
What’s going wrong here?