Could not resolve io.jmix.bpm:jmix-bpm-ui-starter:1.1.0.2

Hello,

I am trying to build deploy my project but I get this issue related to bpm module :
> Task :compileJava FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':compileJava'.
> Could not resolve all files for configuration ':compileClasspath'.
   > Could not resolve io.jmix.bpm:jmix-bpm-ui-starter:1.1.0.2 actionable tasks: 2 executed

FAILURE: Build failed with an exception.

  • What went wrong:
    Execution failed for task ‘:compileJava’.

Could not resolve all files for configuration ‘:compileClasspath’.
Could not resolve io.jmix.bpm:jmix-bpm-ui-starter:1.1.0.2 actionable tasks: 2 executed

 Required by:
     project :
  > Skipped due to earlier error

Could not resolve io.jmix.bpm:jmix-bpm-starter:1.1.0.
Required by:
project :
Could not resolve io.jmix.bpm:jmix-bpm-starter:1.1.0.
Could not get resource ‘https://nexus.jmix.io/repository/premium/io/jmix/bpm/jmix-bpm-starter/1.1.0/jmix-bpm-starter-1.1.0.pom’.
Could not GET ‘https://nexus.jmix.io/repository/premium/io/jmix/bpm/jmix-bpm-starter/1.1.0/jmix-bpm-starter-1.1.0.pom’. Received status code 502 from server: Bad Gateway
Could not resolve io.jmix.bpm:jmix-bpm-starter:1.1.0.

Hi,
could you please try changing public and premium repository URLs from nexus repository from https://nexus.jmix.io to https://global.repo.jmix.io.

There are some problems with connection to nexus.jmix.io server in the last few days.

You repositories section in build.gradle should look like this:

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