Created 12-27-2016 03:04 AM
I installed HDP-2.5 by ambari, now i want to use eclipse to delevop my project (project is mavn), so where can i found HDP components maven repositories
Created 03-16-2017 02:27 PM
Add these to your pom.xml or to your Maven to resolve HDP dependencies:
<repository> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> <id>hortonworks.extrepo</id> <name>Hortonworks HDP</name> <url>http://repo.hortonworks.com/content/repositories/releases</url> </repository> <repository> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> <id>hortonworks.other</id> <name>Hortonworks Other Dependencies</name> <url>http://repo.hortonworks.com/content/groups/public</url> </repository>
The first of these is for the main HDP artifacts. These second of these is needed for dependencies like jetty-sslengine.jar:6.1.26.hwx.
Created 12-27-2016 04:11 AM
Here is the link you are lookng for
for version 2.5 the link is below:
Created 12-27-2016 05:29 AM
this is the hortonworks public repo for maven artifects
http://nexus-private.hortonworks.com/nexus/content/groups/public/
add this to you pom.xml
<repository> <id>public</id> <url>http://nexus-private.hortonworks.com/nexus/content/groups/public</url> </repository>
get your dependecy from the repo link and add in your maven dependencies.
Created 05-02-2017 10:32 AM
I have try to download jars from http://nexus-private.hortonworks.com/nexus/content/groups/public, but it failed. Errors as following : (
Path /org/apache/hadoop/hadoop-auth/2.7.1.2.3.4.0-3347/hadoop-auth-2.7.1.2.3.4.0-3347.BLK not found in group repository "Public Repositories" [id=public].
Created 03-16-2017 02:27 PM
Add these to your pom.xml or to your Maven to resolve HDP dependencies:
<repository> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> <id>hortonworks.extrepo</id> <name>Hortonworks HDP</name> <url>http://repo.hortonworks.com/content/repositories/releases</url> </repository> <repository> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> <id>hortonworks.other</id> <name>Hortonworks Other Dependencies</name> <url>http://repo.hortonworks.com/content/groups/public</url> </repository>
The first of these is for the main HDP artifacts. These second of these is needed for dependencies like jetty-sslengine.jar:6.1.26.hwx.