Skip to content

Commit f17c782

Browse files
Updated pom.xml to use jakarta instead of javax, upgraded few other jakarta packages as well
1 parent 73be8e9 commit f17c782

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

pom.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -98,21 +98,27 @@
9898
<scope>provided</scope>
9999
</dependency>
100100
<dependency>
101-
<groupId>javax.servlet</groupId>
102-
<artifactId>javax.servlet-api</artifactId>
103-
<version>3.0.1</version>
101+
<groupId>jakarta.servlet</groupId>
102+
<artifactId>jakarta.servlet-api</artifactId>
103+
<version>5.0.0</version>
104104
<scope>provided</scope>
105105
</dependency>
106106
<dependency>
107107
<groupId>jakarta.servlet.jsp</groupId>
108108
<artifactId>jakarta.servlet.jsp-api</artifactId>
109-
<version>2.3.6</version>
109+
<version>4.0.0</version>
110110
<scope>provided</scope>
111111
</dependency>
112112
<dependency>
113113
<groupId>jakarta.jms</groupId>
114114
<artifactId>jakarta.jms-api</artifactId>
115-
<version>2.0.3</version>
115+
<version>3.0.0</version>
116+
<scope>provided</scope>
117+
</dependency>
118+
<dependency>
119+
<groupId>jakarta.el</groupId>
120+
<artifactId>jakarta.el-api</artifactId>
121+
<version>4.0.0</version>
116122
<scope>provided</scope>
117123
</dependency>
118124
<dependency>
@@ -139,12 +145,6 @@
139145
<version>3.2.18.RELEASE</version>
140146
<scope>test</scope>
141147
</dependency>
142-
<dependency>
143-
<groupId>jakarta.el</groupId>
144-
<artifactId>jakarta.el-api</artifactId>
145-
<version>3.0.3</version>
146-
<scope>test</scope>
147-
</dependency>
148148
</dependencies>
149149

150150
<build>

0 commit comments

Comments
 (0)