I have a remote maven repo set up and can successfully upload artifacts and download via POMs. I also see the repo listed along with maven central in my m2eclipse global 'Maven Repositories'.
My problem is that while Maven Central is browsable and updatable in m2eclipse, my internal one is not and when it tries to update I get this:
"Unable to update index for Nexus|http://www.c3works.com:8081/nexus-webapp-1.9.1.1/content/groups/public"
Putting that url in a browser does work, though.
Any ideas how to make m2eclipse to index properly? Thanks!
Here is my .m2/settings.xml:
<settings>
<mirrors>
<mirror>
<id>Nexus</id>
<name>Nexus Public Mirror</name>
<url>http://www.c3works.com:8081/nexus-webapp-1.9.1.1/content/groups/public </url>
<mirrorOf>*</mirrorOf>
</mirror>
</mirrors>
</settings>