<repository>
<id>jboss</id>
<url>http://repository.jboss.com/maven2</url>
</repository>
After hunting around I had to change it to:
<repository><id>jboss.releases</id><name>JBoss Releases</name><url>https://repository.jboss.org/nexus/content/repositories/releases/</url></repository>
It would have been nice if the old name could have been mapped to the new location.
I thought I was done. But no, in the meantime JGroups decided to become more correct and go to a package name. Now, Ehcache did this about three years ago. So the old and new are as follows:
<dependency>
<groupId>jgroups</groupId>
<artifactId>jgroups</artifactId>
<version>2.6.8.GA</version>
</dependency>
<dependency>
<groupId>org.jgroups</groupId>
<artifactId>jgroups</artifactId>
<version>2.10.0.GA</version>
</dependency>
Comments
Leave a comment Trackback