I have read this and this, but that didn\'t help...
I am using hibernate validator with the following versions/dependencies:
For me the problem was that Hibernate Validator depended on jboss-logging. And the jboss logging was not part of my classpath. The exception was not telling me that the class not def found error while trying to instantiate the hibernate configuration impl was from missing jboss logging on the classpath.
Once I added it to the classpath, the class def not found error went away.