Hi,
Wildfly will by default assume that you want to use its own Hibernate version, which is much more up to date.
You can of course bundle older Hibernate versions with your app but please check this guide:
-
https://docs.jboss.org/author/display/W ... ence+GuideIn particular to disable Hibernate Search set the configuration property
Code:
wildfly.jpa.hibernate.search.module=none
or pick a different module, one compatible with the version of Hibernate ORM of your choice.
Also one question for you: are you using Hibernate Search? WildFly should only attempt to initialize Hibernate Search if you're actually using it (like if you have indexed entities), so if you're not using it we should improve this so that it doesn't give you any problem.