Member since
09-06-2019
1
Post
0
Kudos Received
0
Solutions
09-06-2019
01:00 AM
Add a mirror to above repository in the .m2/settings.xml in local root directory of maven. This provides a alternate way to get the required artifacts. The url is "https://repo.hortonworks.com/content/repositories/releases/" Add the following in settings.xml under <mirrors></mirrors> <mirrors> <mirror> <id>alternate</id> <name>alternate to hortonworks</name> <mirrorOf>*,!central</mirrorOf> <url>https://repo.hortonworks.com/content/repositories/releases/</url> </mirror> </mirrors>
... View more