【发布时间】:2011-03-20 07:21:45
【问题描述】:
谁能解释一下:
1。 ga、GA 和 Final Hibernate 版本之间的区别?
2。我应该使用 maven 存储库还是 jboss nexus 存储库?
3。为什么最新的兼容性矩阵 (http://community.jboss.org/wiki/HibernateCompatibilityMatrix) 没有列出高于 3.2.6GA 的任何内容?
我正在使用以下版本,但我很难确定是否应该升级:
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate</artifactId>
<version>3.2.6.ga</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-annotations</artifactId>
<version>3.3.0.ga</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-commons-annotations</artifactId>
<version>3.3.0.ga</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>3.3.1.ga</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-tools</artifactId>
<version>3.2.0.ga</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>3.0.0.ga</version>
</dependency>
【问题讨论】:
标签: java hibernate maven-2 compatibility