gradle build from intellij

I receive this error when trying to use the gradle deploy taks within intellij

Could not resolve com.haulmont.charts:charts-global:6.1.4.
> Could not get resource ‘https://repo.cuba-platform.com/content/groups/premium/com/haulmont/charts/charts-global/6.1.4/charts-global-6.1.4.pom’.
> Could not HEAD ‘https://repo.cuba-platform.com/content/groups/premium/com/haulmont/charts/charts-global/6.1.4/charts-global-6.1.4.pom’. Received status code 401 from server: Unauthorized

Any ideas on what would cause this?

Looks like it might have been a gradle version issue. I downgraded to 2.6 after reading through the documentation and it seems to be working now.

The premium add-ons repository (which contains charts jars) requires username and password to download artifacts. When you start build tasks from Studio, it passes the credentials to Gradle automatically from your registration information. When you start Gradle from command line or other tools, you should provide username and password:


gradle assemble -PpremiumRepoUser=111111222222 -PpremiumRepoPass=abcdefabcdef

See also build.gradle - CUBA Platform. Developer’s Manual