Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

maven artifacts for hortonworks hdp3

avatar
New Member

Hi,

I'm looking for a list of artifact-versions for HDP 3.0 in order to use with Maven (Java), so I get the correct version for e.g. hbase-client. I can't seem to find the list.

Thanks in advance

1 ACCEPTED SOLUTION

avatar

@David Pocivalnik You can search for artifacts and versions on

http://repo.hortonworks.com/

For example, I was able to find hbase-client maven dependency

<dependency>
  <groupId>org.apache.hbase</groupId>
  <artifactId>hbase-client</artifactId>
  <version>2.0.0.3.0.0.0-1634</version>
</dependency>

HTH

*** If you found this answer addressed your question, please take a moment to login and click the "accept" link on the answer.

View solution in original post

3 REPLIES 3

avatar

@David Pocivalnik You can search for artifacts and versions on

http://repo.hortonworks.com/

For example, I was able to find hbase-client maven dependency

<dependency>
  <groupId>org.apache.hbase</groupId>
  <artifactId>hbase-client</artifactId>
  <version>2.0.0.3.0.0.0-1634</version>
</dependency>

HTH

*** If you found this answer addressed your question, please take a moment to login and click the "accept" link on the answer.

avatar
New Member

thanks for your answer.
this means that the first three numbers are referring to hbase itself, and the last ones to the HDP version?in your example HDP 3.0.0.0. is this correct?

avatar

@David Pocivalnik yes, that is correct! Please if you are satifsfied with the answer remember to login and mark as accepted.