This is an automated email from the ASF dual-hosted git repository.

pinal pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git


The following commit(s) were added to refs/heads/master by this push:
     new 928a3788f ATLAS-5188: Remove jsp-api jar dependency (#497)
928a3788f is described below

commit 928a3788f03aab9cc26d3308d2dab1563130e167
Author: jayendrap <[email protected]>
AuthorDate: Fri Jan 16 17:43:36 2026 +0530

    ATLAS-5188: Remove jsp-api jar dependency (#497)
---
 pom.xml        |  6 ------
 webapp/pom.xml | 11 +++++------
 2 files changed, 5 insertions(+), 12 deletions(-)

diff --git a/pom.xml b/pom.xml
index 12330bdd2..9e0a0999a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -387,12 +387,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 2b3344c91..c314e5857 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>
@@ -544,7 +543,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>
 

Reply via email to