Unable to install Bproc trial

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?

Its problem with the coordinates.

Replace version number with the version number of the addon in the unpacked atrifacts in the repository directory. Find it under ‘/repository/com/haulmont/addon/name-of-the-addon/name-of-the-addon-global/’
Don’t forget to add .trial at the end of the coordinates.

In my case it is ‘com.haulmont.addon.bproc:bproc-global:1.0.2.trial’

1 Like

I’ll try that. The email instructs me to use the coordinates off the Marketplace page, with .trial appended.

Yes I suppose thats how it should work, but it doesn’t, it gives *BETA coordinate instead of proper one, I have reported the problem.

1 Like

It’s all working now.