It looks like the last version of Hibernate deployed to central was 3.3.2.GA. However, there's many newer releases (e.g. 3.5.6-Final), but all seem to be hosted by JBoss.
I tried adding the following to appfuse-hibernate's pom.xml so I (and eventually users) can use to the latest release.
<repositories>
<repository>
<id>jboss</id>
<url>
http://repository.jboss.org/nexus/content/groups/public</url>
</repository>
</repositories>
However, my settings.xml points to oss.sonatype, causing it to skip over this repository. Currently wondering if it's even worth the trouble to upgrade Hibernate if its maintainers are going to make Maven harder than it already is.
I tried adding the following to appfuse-hibernate's pom.xml so I (and eventually users) can use to the latest release.
<repositories>
<repository>
<id>jboss</id>
<url>http://repository.jboss.org/nexus/content/groups/public</url>
</repository>
</repositories>
However, my settings.xml points to oss.sonatype, causing it to skip over this repository. Currently wondering if it's even worth the trouble to upgrade Hibernate if its maintainers are going to make Maven harder than it already is.