What library versions come with WildFly 9.0.1.Final

I watched https://docs.jboss.org/author/display/WFLY9/Documentation , but no information. I especially do not want to know the version of hibernate-entitymanager and hibernate-jpamodelgen.

+5
source share
1 answer

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

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 comes with JPAModelGen at all, it is part of the Hibernate tools that are out of sync with the releases of Hibernate ORM. I believe that it is not supported so much because of the peculiarities of generating JPA2 schemas.

+9
source

All Articles