|
21 | 21 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
22 | 22 | <maven.compiler.source>11</maven.compiler.source> |
23 | 23 | <maven.compiler.target>11</maven.compiler.target> |
| 24 | + <jetty.version>9.4.50.v20221201</jetty.version> |
24 | 25 | </properties> |
25 | 26 |
|
26 | 27 | <!-- [START gae_java11_server_dependencies] --> |
|
29 | 30 | <dependency> |
30 | 31 | <groupId>org.eclipse.jetty</groupId> |
31 | 32 | <artifactId>jetty-server</artifactId> |
32 | | - <version>9.4.44.v20210927</version> |
| 33 | + <version>${jetty.version}</version> |
33 | 34 | </dependency> |
34 | 35 | <dependency> |
35 | 36 | <groupId>org.eclipse.jetty</groupId> |
36 | 37 | <artifactId>jetty-webapp</artifactId> |
37 | | - <version>9.4.44.v20210927</version> |
| 38 | + <version>${jetty.version}</version> |
38 | 39 | <type>jar</type> |
39 | 40 | </dependency> |
40 | 41 | <dependency> |
41 | 42 | <groupId>org.eclipse.jetty</groupId> |
42 | 43 | <artifactId>jetty-util</artifactId> |
43 | | - <version>9.4.44.v20210927</version> |
| 44 | + <version>${jetty.version}</version> |
44 | 45 | </dependency> |
45 | 46 | <dependency> |
46 | 47 | <groupId>org.eclipse.jetty</groupId> |
47 | 48 | <artifactId>jetty-annotations</artifactId> |
48 | | - <version>9.4.43.v20210629</version> |
49 | | - <type>jar</type> |
| 49 | + <version>${jetty.version}</version> |
50 | 50 | </dependency> |
51 | 51 | <!-- extra explicit dependency needed because there is a JSP in the sample--> |
52 | 52 | <dependency> |
53 | 53 | <groupId>org.eclipse.jetty</groupId> |
54 | 54 | <artifactId>apache-jsp</artifactId> |
55 | | - <version>9.4.44.v20210927</version> |
| 55 | + <version>${jetty.version}</version> |
56 | 56 | </dependency> |
57 | 57 | </dependencies> |
58 | 58 | <!-- [END gae_java11_server_dependencies] --> |
|
0 commit comments