Are you experiencing the issue, that your Maven won't recognize dependencies loaded from a local filesystem repository?
e.g. in my case tapestry jars that were not yet publicly available were located locally inside a directory and configured as a local maven repository.
[WARNING] The POM for org.apache.tapestry:tapestry-webresources:jar:5.4-beta-38
is missing, no dependency information available
[WARNING] The POM for org.oscy.tapestry5:tapestry-common:jar:1.3 is missing, no
dependency information available
[WARNING] The POM for org.oscy.tapestry5:tapestry-common-web:jar:1.3 is missing,
no dependency information available
[WARNING] The POM for org.oscy.tapestry5:tapestry-dao:jar:1.3 is missing, no dep
endency information available
[WARNING] The POM for org.oscy.tapestry5:tapestry-jpa-web:jar:1.3 is missing, no
dependency information available
[WARNING] The POM for org.apache.tapestry:tapestry-upload:jar:5.4-beta-38 is mis
sing, no dependency information available
[WARNING] The POM for org.apache.tapestry:tapestry-beanvalidator:jar:5.4-beta-38
is missing, no dependency information available
[WARNING] The POM for org.apache.tapestry:tapestry-test:jar:5.4-beta-38 is missi
ng, no dependency information available
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.470 s
[INFO] Finished at: 2015-10-27T10:39:39+01:00
[INFO] Final Memory: 6M/123M
[INFO] ------------------------------------------------------------------------
So what's the problem? It can not be a firewall or proxy issue with a local directory...or can it?
In my particular case, for security reasons maven could not connect to the wild - it was only allowed to access our artifactory - configured as a mirror in the global maven settings within the Windows user directory inside .m2/settings.xml. However, this even applies for the local file system!
The solution is simple - if you know it - or RTFM:
external:* = everything not on the localhost and not file based.
<mirrors>
<mirror>
<id>internal-repository</id>
<name>Maven Repository Manager running on repo.mycompany.com</name>
<url>http://ci.company:8080/artifactory/repo1</url>
<mirrorOf>external:*</mirrorOf>
</mirror>
Reload your global maven settings in Eclipse (or IntelliJ) - and try again (or use the command line maven build tool). It should work now!