harrybvp
harrybvp

Reputation: 2505

Understanding Hibernate Version History and Compatibility of its modules with each Other

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.

Upvotes: 2

Views: 8073

Answers (1)

Viral Patel
Viral Patel

Reputation: 8601

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.

Upvotes: 3

Related Questions