Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

maven artifacts for hortonworks hdp3

avatar
Contributor

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
Contributor

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.