domo-java-sdk icon indicating copy to clipboard operation
domo-java-sdk copied to clipboard

Failed to read artifact descriptor for com.domo:domo-java-sdk-all:jar:0.4.0

Open koh789 opened this issue 3 years ago • 3 comments

When I defined it in maven with API version 0.4.0, it failed to load. I think it is because bintray-domo is disabled. Is there any alternative repository? Is there any plan to publish it to maven central in the future?

Failed to read artifact descriptor for com.domo:domo-java-sdk-all:jar:0.4.0: 
Could not transfer artifact com.domo:domo-java-sdk-all:pom:0.4.0 from/to bintray-domo (https://dl.bintray.com/domoinc/domo-java-sdk):
Authorization failed for https://dl.bintray.com/domoinc/domo-java-sdk/com/domo/domo-java-sdk-all/0.4.0/domo-java-sdk-all-0.4.0.pom 403 Forbidden

koh789 avatar May 06 '21 02:05 koh789

hi @kohei789 were you able to get a solution for this issue? I am also having the same issue

Chinmay-Deshpande avatar May 20 '21 22:05 Chinmay-Deshpande

I have the same problem. I'm temporarily avoiding it by using "jcenter.bintray.com" instead of "dl.bintray.com/domoinc/domo-java-sdk" for the repository.

For maven pom.xml:

<repositories>
  <repository>
    <id>jcenter</id>
    <url>https://jcenter.bintray.com</url>
  </repository>
</repositories>

akkinoc avatar May 21 '21 01:05 akkinoc

thanks @akkinoc , that worked

Chinmay-Deshpande avatar May 22 '21 07:05 Chinmay-Deshpande