What versions of libraries are shipped with WildFly 9.0.1.Final

Deadly 提交于 2020-01-02 02:44:30

问题


I was looking in https://docs.jboss.org/author/display/WFLY9/Documentation, but there is no info. Especially I want't to know version of hibernate-entitymanager & hibernate-jpamodelgen.


回答1:


The easiest way is to look at the pom.xml file for the 9.0.1.Final build:

https://github.com/wildfly/wildfly/blob/9.0.1.Final/pom.xml

The relevant lines you are looking for are probably:

<version.org.hibernate>4.3.10.Final</version.org.hibernate
<version.org.hibernate.commons.annotations>4.0.5.Final</version.org.hibernate.commons.annotations
<version.org.hibernate.validator>5.1.3.Final</version.org.hibernate.validator>
<version.org.hibernate.javax.persistence.hibernate-jpa-2.1-api>1.0.0.Final</version.org.hibernate.javax.persistence.hibernate-jpa-2.1-api>
<version.org.hibernate.hql>1.1.0.Final</version.org.hibernate.hql>
<version.org.hibernate.search>5.2.0.Final</version.org.hibernate.search>

I don't think it ships with JPAModelGen at all, this is part of Hibernate tools which has gotten out of sync with Hibernate ORM releases. I believe it isn't being maintained as much due to JPA2 schema generation features.



来源:https://stackoverflow.com/questions/32026990/what-versions-of-libraries-are-shipped-with-wildfly-9-0-1-final

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!