-
1. Re: Access denied to: http://repository.jboss.org/maven2/quartz/quartz/1.6.0/quartz-1.6.0.pom , ReasonPhrase:Forbidden. -> [Help 1]
mstruk Jul 29, 2013 4:33 AM (in response to winseb)It's a fairly old GateIn version you're using ... The error you see is due to a wrong Maven repository being used. Was correct one at the time
One thing you can try is create a settings.xml file in your $HOME/.m2 or edit the existing one so it contains:
<profiles>
...
<profile>
<id>repository.jboss.org</id>
<repositories>
<repository>
<id>repository.jboss.org</id>
<name>JBoss Public Maven Repository Group</name>
<url>https://repository.jboss.org/nexus/content/groups/public/</url>
<layout>default</layout>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
</repositories>
</profile>
...
</profiles>
<activeProfiles>
<activeProfile>repository.jboss.org</activeProfile>
</activeProfiles>
This would override repository configuration for repository.jboss.org to point to another URL. There are other repositories that may have the same problem.
Maybe this will be of help: https://github.com/gatein/gatein-portal/blob/master/pom.xml#L1545.