It seems to me some 1.7.0 snapshots are missing for some dependencies in the
central maven repo. A good example would be org.apache.jclouds.driver -
jclouds-slf4j.
I was able to fix this in my project by adding
<repositories>
<repository>
<id>apache-snapshots</id>
<name>snapshots apache maven repo</name>
<url>https://repository.apache.org/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
But this really should not be necessary....? Or should it? If somebody knows
more about this please explain.