Skip to content

Commit 7583f0b

Browse files
committed
chore(playground-server): migrate from tomcat7 to jetty plugin
1 parent 5ae4b25 commit 7583f0b

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

playground-server/pom.xml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -190,12 +190,16 @@
190190
</executions>
191191
</plugin>
192192
<plugin>
193-
<groupId>org.apache.tomcat.maven</groupId>
194-
<artifactId>tomcat7-maven-plugin</artifactId>
195-
<version>2.2</version>
193+
<groupId>org.eclipse.jetty</groupId>
194+
<artifactId>jetty-maven-plugin</artifactId>
195+
<version>9.4.54.v20240208</version>
196196
<configuration>
197-
<port>8080</port>
198-
<path>/</path>
197+
<httpConnector>
198+
<port>8080</port>
199+
</httpConnector>
200+
<webApp>
201+
<contextPath>/</contextPath>
202+
</webApp>
199203
</configuration>
200204
</plugin>
201205
</plugins>

0 commit comments

Comments
 (0)