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.
source share