Restore tomcat-embed TldPatterns

Restore tomcat-embed-core-* and tomcat-embed-logging-* patterns which
were inadvertently removed in commit 0ec8d281ef.

See gh-25764
This commit is contained in:
Phillip Webb
2021-03-23 13:07:15 -07:00
parent 82127fdaa3
commit 2b591387b8

View File

@@ -154,6 +154,8 @@ final class TldPatterns {
skipPatterns.add("spring-oxm-*.jar");
skipPatterns.add("spring-tx-*.jar");
skipPatterns.add("snakeyaml-*.jar");
skipPatterns.add("tomcat-embed-core-*.jar");
skipPatterns.add("tomcat-embed-logging-*.jar");
skipPatterns.add("tomcat-embed-el-*.jar");
skipPatterns.add("validation-api-*.jar");
ADDITIONAL_SKIP = Collections.unmodifiableSet(skipPatterns);