Skip to content

Commit 24e97c8

Browse files
authored
Update Jetty version to latest unified version. (GoogleCloudPlatform#7727)
* Upgrade Jetty version to unified 9.4.50.v20221201 * Upgrade Jetty version to unified 9.4.50.v20221201
1 parent 29a7b1f commit 24e97c8

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

  • appengine-java11/appengine-simple-jetty-main

appengine-java11/appengine-simple-jetty-main/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2222
<maven.compiler.source>11</maven.compiler.source>
2323
<maven.compiler.target>11</maven.compiler.target>
24+
<jetty.version>9.4.50.v20221201</jetty.version>
2425
</properties>
2526

2627
<!-- [START gae_java11_server_dependencies] -->
@@ -29,30 +30,29 @@
2930
<dependency>
3031
<groupId>org.eclipse.jetty</groupId>
3132
<artifactId>jetty-server</artifactId>
32-
<version>9.4.44.v20210927</version>
33+
<version>${jetty.version}</version>
3334
</dependency>
3435
<dependency>
3536
<groupId>org.eclipse.jetty</groupId>
3637
<artifactId>jetty-webapp</artifactId>
37-
<version>9.4.44.v20210927</version>
38+
<version>${jetty.version}</version>
3839
<type>jar</type>
3940
</dependency>
4041
<dependency>
4142
<groupId>org.eclipse.jetty</groupId>
4243
<artifactId>jetty-util</artifactId>
43-
<version>9.4.44.v20210927</version>
44+
<version>${jetty.version}</version>
4445
</dependency>
4546
<dependency>
4647
<groupId>org.eclipse.jetty</groupId>
4748
<artifactId>jetty-annotations</artifactId>
48-
<version>9.4.43.v20210629</version>
49-
<type>jar</type>
49+
<version>${jetty.version}</version>
5050
</dependency>
5151
<!-- extra explicit dependency needed because there is a JSP in the sample-->
5252
<dependency>
5353
<groupId>org.eclipse.jetty</groupId>
5454
<artifactId>apache-jsp</artifactId>
55-
<version>9.4.44.v20210927</version>
55+
<version>${jetty.version}</version>
5656
</dependency>
5757
</dependencies>
5858
<!-- [END gae_java11_server_dependencies] -->

0 commit comments

Comments
 (0)