Not able to access the repository url http://m2.neo4j.org/content/repositories/releases/

Not able to access the repository url http://m2.neo4j.org/content/repositories/releases/ in hte process of doing a maven build.

Is this a known issue ?

We are getting the below error in our logs

Error listing remote resources http://m2.neo4j.org/content/repositories/releases/org: Read timed out

I had similar errors, but reading the README at GitHub - neo4j-contrib/m2: Maven Repository shows that we should not use m2.neo4j.or as the maven repo, but a direct github repo. The repository syntax looks like:

    <repository>
        <id>neo4j-contrib-releases</id>
        <url>https://raw.github.com/neo4j-contrib/m2/master/releases</url>
        <releases>
            <enabled>true</enabled>
        </releases>
        <snapshots>
            <enabled>false</enabled>
        </snapshots>
    </repository>