Skip to content

Commit 4ca57a3

Browse files
committed
pom.xml: exclude duplicated dependency on tomcat-embed-el.
We're already using org.mortbay.jasper:apache-el and dependency on org.apache.tomcat.embed:tomcat-embed-el is unnecessary. This also saves additional 235K. No functional changes.
1 parent 389c07e commit 4ca57a3

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,13 @@
114114
<dependency>
115115
<groupId>org.springframework.boot</groupId>
116116
<artifactId>spring-boot-starter-validation</artifactId>
117+
<exclusions>
118+
<exclusion>
119+
<!-- In favour of org.mortbay.jasper:apache-el -->
120+
<groupId>org.apache.tomcat.embed</groupId>
121+
<artifactId>tomcat-embed-el</artifactId>
122+
</exclusion>
123+
</exclusions>
117124
</dependency>
118125

119126
<!-- https://github.com/spring-projects/spring-boot/blob/v1.4.1.RELEASE/spring-boot-starters/spring-boot-starter-web/pom.xml -->
@@ -642,6 +649,8 @@
642649
<excludes>
643650
<!-- Because we use jcl-over-slf4j instead -->
644651
<exclude>commons-logging</exclude>
652+
<!-- Because we use org.mortbay.jasper:apache-el instead -->
653+
<exclude>org.apache.tomcat.embed:tomcat-embed-el</exclude>
645654
<exclude>junit:*:*:*:compile</exclude>
646655
<exclude>org.yaml:snakeyaml</exclude>
647656
</excludes>

0 commit comments

Comments
 (0)