-
1. Re: Access denied to: http://repository.jboss.org/maven2/trove/trove/2.1.1/trove-2.1.1.pom
pgier Jun 30, 2011 5:41 PM (in response to riznob)This repository URL was deprecated last year, and was recently disabled. There is some more information in this jira issue:
-
2. Re: Access denied to: http://repository.jboss.org/maven2/trove/trove/2.1.1/trove-2.1.1.pom
ehognestad Jul 4, 2011 10:01 AM (in response to pgier)Hi guys.
I also struggled with this problem for some time, and I ended up trying to install the trove dependency manually in my local maven repository. While trying that I found another repository that had that specific dependency:
https://maven.nuxeo.org/nexus/content/groups/public/
So what I basically did was to add the following tag in my pom.xml and maven downloads the trove dependency, and you don't get the access denied problem from the jboss repos. At least is a solution until we find something better.
See below for my pom.xml entry:
<repository>
<id>maven-nuxeo</id>
<name>Maven Nuxeo Repository</name>
<url>https://maven.nuxeo.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>
Regards,
Eivind
-
3. Re: Access denied to: http://repository.jboss.org/maven2/trove/trove/2.1.1/trove-2.1.1.pom
awaterma Sep 7, 2011 1:36 PM (in response to ehognestad)Huge help with the nuxeo repository. Thanks Elvind!