
This commit removes the validation starter from the web and webflux starters - we've reconsidered that choice since many were not using this feature as part of their default web experience. Thit commit also changes the default EL implementation for the Jakarta implementation, aligning all servers on it and simplifying dependency management (especially exclusions that were required previously). Closes gh-19550
13 lines
391 B
Groovy
13 lines
391 B
Groovy
plugins {
|
|
id 'org.springframework.boot.starter'
|
|
}
|
|
|
|
description = "Starter for using Java Bean Validation with Hibernate Validator"
|
|
|
|
dependencies {
|
|
api enforcedPlatform(project(':spring-boot-project:spring-boot-dependencies'))
|
|
api project(':spring-boot-project:spring-boot-starters:spring-boot-starter')
|
|
api 'org.glassfish:jakarta.el'
|
|
api 'org.hibernate.validator:hibernate-validator'
|
|
}
|