-
Notifications
You must be signed in to change notification settings - Fork 41.7k
Closed
Description
I've had issues with javax.validation:validation-api dependency - for some reason in my project it was resolved as 1.0.0.GA instead of 1.1.0.Final (expected by org.hibernate:hibernate-validator).
As of now I've added this dependency locally:
<properties>
...
<javax-validation.version>1.1.0.Final</javax-validation.version>
...
</properties>
<dependencyManagement>
<dependencies>
...
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>${javax-validation.version}</version>
</dependency>
...
</dependencies>
</dependencyManagement>Is it reasonable to add the same to Spring Boot?
Metadata
Metadata
Assignees
Labels
type: enhancementA general enhancementA general enhancement