Created on 07-19-2018 11:49 AM - edited 09-16-2022 06:29 AM
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
Created 07-19-2018 01:16 PM
@David Pocivalnik You can search for artifacts and versions on
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.
Created 07-19-2018 01:16 PM
@David Pocivalnik You can search for artifacts and versions on
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.
Created 07-19-2018 01:48 PM
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?
Created 07-19-2018 04:03 PM
@David Pocivalnik yes, that is correct! Please if you are satifsfied with the answer remember to login and mark as accepted.