79427125

Date: 2025-02-10 12:54:50
Score: 1
Natty:
Report link

Similiar what @geosmart mentioned, it can be caused by a dependency.

In my case it came through a transitive dependency. Excluding it in the pom.xml stopped the validation force

    <dependency>
        <groupId>com.my.company</groupId>
        <artifactId>my-artefact</artifactId>
        <exclusions>
            <exclusion>
                <groupId>javax.validation</groupId>
                <artifactId>validation-api</artifactId>
            </exclusion>
        </exclusions>
    </dependency>
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @geosmart
  • Low reputation (0.5):
Posted by: Limon