Hi,
Just in case people don't know, for about 3 months now, the TinkerPop Maven2 repository has gone into a deprecated state. As such, if you are keeping up with the latest and greatest, DO NOT use the following <repository/> reference.
<repositories>
<repository>
<id>tinkerpop-repository</id>
<name>TinkerPop Maven2 Repository</name>
</repository>
</repositories>
For all SNAPSHOTs (now and into the future) the following SonaType repo SHOULD BE used:
<repositories>
<repository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
Finally, when we push stable releases, we push them to Apache's Central Repository and as such, don't require a <repository/> tag.
I hope that is clear,
Marko.