--
I'm not sure it would belong in our POM, since the repository isn't added by neo4j-spatial, but by com.sun.jersey:jersey-client (in reality, com.sun.jersey:jersey-project, it's parent)
In any case, I tried, and failed to disable the repository in the POM with:
<repository>
<id>glassfish-repository</id>
<name>Repository for Glassfish</name>
<url>http://maven.glassfish.org/content/groups/glassfish</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
I did manage to use the settings.xml though:
<settings>
<mirrors>
<mirror>
<id>hide-glassfish</id>
<name>Hide Glassfish</name>
<url>http://repo1.maven.org</url>
<mirrorOf>glassfish-repository</mirrorOf>
</mirror>
</mirrors>
</settings>
Cheers,
Jonathan
--
Axel Morgner · ax...@morgner.de · @amorgner
c/o Morgner UG · Hanauer Landstr. 291a · 60314 Frankfurt ·
Germany
phone: +49 151 40522060 · skype: axel.morgner
structr - Open Source CMS and Web Framework based on Neo4j: http://structr.org - Winner of
2012 Graphie Award for Most Innovative Open Source Graph
Application
structr Mailing List and Forum hosted at Google
Groups
Graph Database Usergroup "graphdb-frankfurt", sponsored by
Neo4j: http://www.meetup.com/graphdb-frankfurt
Das Sport-Sharing-Netzwerk des Deutschen Olympischen
Sportbundes (DOSB): https://splink.de
- Winner of 2012 Graphie Award for Most Innovative Social
Graph Application
this is probably caused by a but in Maven [1].
--