Skip to content

Commit 50ff00c

Browse files
author
jefftlin
committed
Upgrade servlet-api to 3.1.0
1 parent 18a3cf5 commit 50ff00c

File tree

1 file changed

+19
-5
lines changed

1 file changed

+19
-5
lines changed

pom.xml

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@
7474
<jobmanager.version>0.1.0-SNAPSHOT</jobmanager.version>
7575
<jasypt.version>1.9.3</jasypt.version>
7676
<xstream.version>1.4.21</xstream.version>
77+
<servlet-api.version>3.1.0</servlet-api.version>
7778
<netty.version>4.1.118.Final</netty.version>
7879
<protobuf-java.version>3.25.5</protobuf-java.version>
7980
</properties>
@@ -154,8 +155,26 @@
154155
<groupId>io.netty</groupId>
155156
<artifactId>netty-all</artifactId>
156157
</exclusion>
158+
<exclusion>
159+
<groupId>com.thoughtworks.xstream</groupId>
160+
<artifactId>xstream</artifactId>
161+
</exclusion>
162+
<exclusion>
163+
<groupId>javax.servlet</groupId>
164+
<artifactId>servlet-api</artifactId>
165+
</exclusion>
157166
</exclusions>
158167
</dependency>
168+
<dependency>
169+
<groupId>com.thoughtworks.xstream</groupId>
170+
<artifactId>xstream</artifactId>
171+
<version>${xstream.version}</version>
172+
</dependency>
173+
<dependency>
174+
<groupId>javax.servlet</groupId>
175+
<artifactId>javax.servlet-api</artifactId>
176+
<version>${servlet-api.version}</version>
177+
</dependency>
159178
<dependency>
160179
<groupId>io.netty</groupId>
161180
<artifactId>netty-all</artifactId>
@@ -237,11 +256,6 @@
237256
<artifactId>commons-math3</artifactId>
238257
<version>${commons.math.version}</version>
239258
</dependency>
240-
<dependency>
241-
<artifactId>xstream</artifactId>
242-
<groupId>com.thoughtworks.xstream</groupId>
243-
<version>${xstream.version}</version>
244-
</dependency>
245259
<dependency>
246260
<artifactId>com.google.protobuf</artifactId>
247261
<groupId>protobuf-java</groupId>

0 commit comments

Comments
 (0)