
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
18 lines
635 B
Groovy
18 lines
635 B
Groovy
plugins {
|
|
id 'org.springframework.boot.starter'
|
|
}
|
|
|
|
description = "Starter for using Tomcat as the embedded servlet container. Default servlet container starter used by spring-boot-starter-web"
|
|
|
|
dependencies {
|
|
api enforcedPlatform(project(':spring-boot-project:spring-boot-dependencies'))
|
|
api 'jakarta.annotation:jakarta.annotation-api'
|
|
api ('org.apache.tomcat.embed:tomcat-embed-core') {
|
|
exclude group: 'org.apache.tomcat', module: 'tomcat-annotations-api'
|
|
}
|
|
api 'org.glassfish:jakarta.el'
|
|
api ('org.apache.tomcat.embed:tomcat-embed-websocket') {
|
|
exclude group: 'org.apache.tomcat', module: 'tomcat-annotations-api'
|
|
}
|
|
}
|