WildFly 10 does not have the dependencies needed to deploy a project uusing Hibernate OGM 5.1 FInal.
The problem is that the Hibernate ORM and Hibernate Search versions need to be upgraded.
Currently there is an error in the documentation about how to configure WildFly. I've already sent a PR but I will mention here the right configuration to use for those who cannot wait.
In the documentation the part related to the modules is correct, what's missing is the fact the you also need the Hibernate Search modules archive.
You can download it from Maven Central:
http://repo1.maven.org/maven2/org/hiber ... 0-dist.zipAnd the property to set in your project is the following:
Code:
<property name="wildfly.jpa.hibernate.search.module" value="org.hibernate.search.module:5.6.1.Final-orm51"/>
The current PR with the updates to the documentation can be found on github:
https://github.com/hibernate/hibernate-ogm/pull/859Thanks,
Davide
PS: thanks to Harsha Ramesh for the feddback
https://twitter.com/HarshaRamesh/status ... 4301893632