Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0650676

Browse files
ZheSun88vaadin-bot
authored andcommittedFeb 14, 2025·
use jetty 12 in platform test (#7109)
* use jetty 12 * Update pom.xml * Update pom.xml * Update pom-dev.xml * Update pom-dev.xml
1 parent b6b88e5 commit 0650676

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed
 

‎pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<maven.compiler.target>17</maven.compiler.target>
2121
<spring.boot.version>3.4.2</spring.boot.version>
2222
<junit.jupiter.version>5.9.1</junit.jupiter.version>
23-
<jetty.version>11.0.13</jetty.version>
23+
<jetty.version>12.0.15</jetty.version>
2424
</properties>
2525

2626
<distributionManagement>

‎vaadin-platform-sbom/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@
118118
</executions>
119119
</plugin>
120120
<plugin>
121-
<groupId>org.eclipse.jetty</groupId>
122-
<artifactId>jetty-maven-plugin</artifactId>
121+
<groupId>org.eclipse.jetty.ee10</groupId>
122+
<artifactId>jetty-ee10-maven-plugin</artifactId>
123123
<version>${jetty.version}</version>
124124
</plugin>
125125
</plugins>

‎vaadin-platform-test/pom-dev.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@
131131
</configuration>
132132
</plugin>
133133
<plugin>
134-
<groupId>org.eclipse.jetty</groupId>
135-
<artifactId>jetty-maven-plugin</artifactId>
134+
<groupId>org.eclipse.jetty.ee10</groupId>
135+
<artifactId>jetty-ee10-maven-plugin</artifactId>
136136
<version>${jetty.version}</version>
137137
<configuration>
138138
<stopPort>9999</stopPort>
@@ -148,7 +148,7 @@
148148
<id>start-jetty</id>
149149
<phase>pre-integration-test</phase>
150150
<goals>
151-
<goal>start</goal>
151+
<goal>start-war</goal>
152152
</goals>
153153
</execution>
154154
<execution>

‎vaadin-platform-test/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,8 @@
218218
</configuration>
219219
</plugin>
220220
<plugin>
221-
<groupId>org.eclipse.jetty</groupId>
222-
<artifactId>jetty-maven-plugin</artifactId>
221+
<groupId>org.eclipse.jetty.ee10</groupId>
222+
<artifactId>jetty-ee10-maven-plugin</artifactId>
223223
<version>${jetty.version}</version>
224224
<configuration>
225225
<stopPort>9999</stopPort>

0 commit comments

Comments
 (0)
Please sign in to comment.