You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
555 B
16 lines
555 B
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("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" |
|
} |
|
}
|
|
|