We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I use this version:
implementation 'com.graphql-java:graphql-java-extended-validation:16.0.0'
I had to add to my build.gradle
build.gradle
configurations.all { resolutionStrategy { force 'org.hibernate.validator:hibernate-validator:6.1.6.Final' } }
to avoid a NoSuchMethodError because spring-boot-2.5.1 brings hibernate-validator:6.2.0.Final
NoSuchMethodError
spring-boot-2.5.1
hibernate-validator:6.2.0.Final
java.lang.NoSuchMethodError: 'void org.hibernate.validator.internal.engine.MessageInterpolatorContext.<init>
The text was updated successfully, but these errors were encountered:
Had the same problem. I solved it by using: gradle kotlin dsl extra["hibernate-validator.version"] = "6.1.6.Final"
extra["hibernate-validator.version"] = "6.1.6.Final"
or in gradle: ext['hibernate-validator.version'] = '6.1.6.Final'
ext['hibernate-validator.version'] = '6.1.6.Final'
Sorry, something went wrong.
No branches or pull requests
If I use this version:
I had to add to my
build.gradle
to avoid a
NoSuchMethodError
becausespring-boot-2.5.1
bringshibernate-validator:6.2.0.Final
java.lang.NoSuchMethodError: 'void org.hibernate.validator.internal.engine.MessageInterpolatorContext.<init>
The text was updated successfully, but these errors were encountered: