2

Is there any good link or documentation regarding Hibernate Version History.
My Confusion starts at Hibernate 3.3 when modularisation was introduced.

For e.g if i want to use hibernate-validator 3.x with hibernate 3.2.6ga (before 3.3 its was single jar) would it be compatible?

I want to know compatibility between different modules and also their compatibility with Single Hibernate Jars Releases (like 3.2.6ga ) By compatibility i mean what's the minimum required version.

I am hibernate newbie.so completely lost in Hibernate Version Jungle.

harrybvp
  • 2,445
  • 2
  • 22
  • 30

1 Answers1

3

Have a look at Hibernate Compatibility Matrix maintained by Hibernate community. It shows exactly which version of Hibernate component is compatible with others.

Hibenate Compatibility Matrix

So as per the matrix, Hibernate-validator-3.x is compatible with hibernate-3.2.6ga.

Viral Patel
  • 8,506
  • 3
  • 32
  • 29
  • +1 for you but As per the Link, pre 3.3 Hibernate Jars like 3.2.6ga is mentioned as hibernate-core module,so can we assume that single jars were renamed as hibernate-core module (essentially its a core feature) and additional features were added as seperate module – harrybvp Dec 16 '12 at 09:01