Blankman
Blankman

Reputation: 267030

Hibernate website shows version 3.5, maven only showing 3.1rc2

Which maven repository has the latest hibernate core 3.5?

I have repository.jboss.com/maven2 and it only shows version 3.1rc2.

The latest is suppose to have hibernate annotations in the core .jar I believe, mine doesn't.

Upvotes: 0

Views: 133

Answers (2)

matt b
matt b

Reputation: 139931

They changed their repositories around a few months ago

<repository>
      <id>jboss-public-repository-group</id>
      <name>JBoss Public Maven Repository Group</name>
      <url>https://repository.jboss.org/nexus/content/groups/public/</url>
</repository>

See the getting started guide here.

Upvotes: 1

Related Questions