While migrating one project from Tomcat to Jetty, I noticed that spring-boot-jetty has api dependency on org.eclipse.jetty.ee11:jetty-ee11-servlets:
|
api("org.eclipse.jetty.ee11:jetty-ee11-servlets") |
It's unclear why this is the case as there seem to be no usages of anything from Jetty Servlets and this module is either way quite thin these days.
Consider removing this dependency from spring-boot-jetty or making it an optional dependency.
While migrating one project from Tomcat to Jetty, I noticed that
spring-boot-jettyhasapidependency onorg.eclipse.jetty.ee11:jetty-ee11-servlets:spring-boot/module/spring-boot-jetty/build.gradle
Line 29 in 6939fae
It's unclear why this is the case as there seem to be no usages of anything from Jetty Servlets and this module is either way quite thin these days.
Consider removing this dependency from
spring-boot-jettyor making it an optional dependency.