| Hi, I have trouble pulling the HV 6.0.2.final dependencies for my war file. The problem is that the HV jar file pulled into the war file does not contains any class file, as a result I received a "javax.validation.NoProviderFoundException: Unable to create a Configuration, because no Bean Validation provider could be found. Add a provider like Hibernate Validator (RI) to your classpath" exception starting up my Tomcat web app. The development context/method we have tried and failed: We are using Gradle, so we have: compile "javax.el:javax.el-api:3.0.0" compile group: 'org.glassfish', name: 'javax.el', version: '3.0.1-b08' compile group: 'org.hibernate.validator', name: 'hibernate-validator', version: "6.0.2.final" We noticed that the group id was 'org.hibernate' prior to HV 6+ and HV 5.x.x was used in Resteasy-validator-provider. So we have a forced Gradle to pull the 6.0.2.final version using a resolutionStrategy: force group: 'org.hibernate.validator', name: 'hibernate-validator', version: "6.0.2.final" Has anyone seen the issue like this? Does anyone know the correct way to set it up? Thanks -Cheng |