Created 06-02-2017 04:44 AM
I am following https://cwiki.apache.org/confluence/display/AMBARI/Installation+Guide+for+Ambari+2.5.0 to build ambari. I cannot build due to "Unresolveable build extension: Error resolving version for plugin 'org.apache.maven.wagon:wagon-ssh-external'". Any idea? Thanks.
Created 06-02-2017 04:55 AM
Can you try adding the following entries in your "~/.m2/settings.xml" to see if it allows you to build.
<settings> <mirrors> <mirror> <id>public</id> <mirrorOf>*</mirrorOf> <url>http://nexus-private.hortonworks.com/nexus/content/groups/public</url> </mirror> </mirrors> </settings>
.
As i see that maven package here: http://nexus-private.hortonworks.com/nexus/content/groups/public/org/apache/maven/wagon/wagon-ssh-ex...
Created 06-02-2017 04:55 AM
Can you try adding the following entries in your "~/.m2/settings.xml" to see if it allows you to build.
<settings> <mirrors> <mirror> <id>public</id> <mirrorOf>*</mirrorOf> <url>http://nexus-private.hortonworks.com/nexus/content/groups/public</url> </mirror> </mirrors> </settings>
.
As i see that maven package here: http://nexus-private.hortonworks.com/nexus/content/groups/public/org/apache/maven/wagon/wagon-ssh-ex...
Created 06-02-2017 05:02 AM
Else you can also try adding the following repo in your "~/.m2/settings.xml"
<settings> <mirrors> <mirror> <id>public</id> <mirrorOf>*</mirrorOf> <url>http://repo.hortonworks.com/content/groups/public</url> </mirror> </mirrors> </settings>
As i see it here as well : http://repo.hortonworks.com/content/groups/public/org/apache/maven/wagon/wagon-ssh-external/maven-me...
.