This is an automated email from the ASF dual-hosted git repository.
pinal pushed a commit to branch atlas-2.5
in repository https://gitbox.apache.org/repos/asf/atlas.git
The following commit(s) were added to refs/heads/atlas-2.5 by this push:
new e6eddf539 ATLAS-5188: Remove jsp-api jar dependency (#497)
e6eddf539 is described below
commit e6eddf539620dd2890b6282059002f291e33aaa9
Author: jayendrap <[email protected]>
AuthorDate: Fri Jan 16 17:43:36 2026 +0530
ATLAS-5188: Remove jsp-api jar dependency (#497)
(cherry picked from commit 928a3788f03aab9cc26d3308d2dab1563130e167)
---
pom.xml | 6 ------
webapp/pom.xml | 11 +++++------
2 files changed, 5 insertions(+), 12 deletions(-)
diff --git a/pom.xml b/pom.xml
index 8a65d8978..23e60b208 100644
--- a/pom.xml
+++ b/pom.xml
@@ -386,12 +386,6 @@
<version>${javax.servlet.version}</version>
</dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.1</version>
- </dependency>
-
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
diff --git a/webapp/pom.xml b/webapp/pom.xml
index f2cc86f85..3756da3d0 100755
--- a/webapp/pom.xml
+++ b/webapp/pom.xml
@@ -129,11 +129,6 @@
<artifactId>javax.servlet-api</artifactId>
</dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- </dependency>
-
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
@@ -269,6 +264,10 @@
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>javax.servlet.jsp</groupId>
+ <artifactId>jsp-api</artifactId>
+ </exclusion>
<exclusion>
<groupId>org.apache.commons</groupId>
<artifactId>commons-configuration2</artifactId>
@@ -532,7 +531,7 @@
<addClasspath>true</addClasspath>
</manifest>
</archive>
-
<packagingExcludes>WEB-INF/lib/dom4j-*.jar,${packages.to.exclude}</packagingExcludes>
+
<packagingExcludes>WEB-INF/lib/dom4j-*.jar,WEB-INF/lib/jsp-api*.jar,${packages.to.exclude}</packagingExcludes>
</configuration>
</plugin>