Posts

Showing posts from January 7, 2019

Configure local nexus server to download artifacts from other remote nexus repository

Image
0 I have installed Nexus repository locally and configuried maven to use my Nexus repo. I am trying to install broadleaf commerce but always getting the error. Broadleaf demo: https://github.com/BroadleafCommerce/DemoSite. When I build the project with default maven settings file I can able to build the project. But with nexus local repo, I couldn't able to download the broadleaf artifacts. Can anyone help me what's wrong with my settings? My settings.xml <settings> <mirrors> <mirror> <!--This sends everything else to /public --> <id>nexus</id> <mirrorOf>*</mirrorOf> <url>http://localhost:8081/repository/maven-proxy-test/</url> </mirror> </mirrors> <profiles> <profile> <id>nexus</id> <!