Skip to content

Commit 4f1f697

Browse files
authored
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 e753eb5 commit 4f1f697

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
@@ -137,8 +137,8 @@
137137
</configuration>
138138
</plugin>
139139
<plugin>
140-
<groupId>org.eclipse.jetty</groupId>
141-
<artifactId>jetty-maven-plugin</artifactId>
140+
<groupId>org.eclipse.jetty.ee10</groupId>
141+
<artifactId>jetty-ee10-maven-plugin</artifactId>
142142
<version>${jetty.version}</version>
143143
<configuration>
144144
<stopPort>9999</stopPort>
@@ -154,7 +154,7 @@
154154
<id>start-jetty</id>
155155
<phase>pre-integration-test</phase>
156156
<goals>
157-
<goal>start</goal>
157+
<goal>start-war</goal>
158158
</goals>
159159
</execution>
160160
<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)