summaryrefslogtreecommitdiffstats
path: root/application/pom.xml
diff options
context:
space:
mode:
authorJon Marius Venstad <jonmv@users.noreply.github.com>2022-10-31 10:48:49 +0100
committerGitHub <noreply@github.com>2022-10-31 10:48:49 +0100
commit80cec9a4412e65a756f8819c648071e4f15ca595 (patch)
tree76720dc3510102950745c4614b234bfcf78373f8 /application/pom.xml
parent42d67fa4e4fd247296b1e99bcfe44e1fdcb50834 (diff)
parenta68d8f6a88dfbbad0f7c76fd4036f9a3acfdd41d (diff)
Merge pull request #24649 from vespa-engine/bjorncs/jetty
Upgrade Jetty from 9.4.49 to 11.0.12
Diffstat (limited to 'application/pom.xml')
-rw-r--r--application/pom.xml30
1 files changed, 18 insertions, 12 deletions
diff --git a/application/pom.xml b/application/pom.xml
index 8f9dc7999a0..2f0586145b2 100644
--- a/application/pom.xml
+++ b/application/pom.xml
@@ -139,8 +139,8 @@
<!-- START JETTY embedded jars -->
<dependency>
- <groupId>org.eclipse.jetty.alpn</groupId>
- <artifactId>alpn-api</artifactId>
+ <groupId>org.eclipse.jetty.http2</groupId>
+ <artifactId>http2-common</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.http2</groupId>
@@ -152,35 +152,43 @@
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
+ <artifactId>jetty-alpn-server</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-client</artifactId>
- <scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
- <artifactId>jetty-continuation</artifactId>
- <scope>test</scope>
+ <artifactId>jetty-http</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.jetty</groupId>
+ <artifactId>jetty-io</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jmx</artifactId>
- <scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
- <scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
- <scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
- <artifactId>jetty-servlets</artifactId>
- <scope>test</scope>
+ <artifactId>jetty-util</artifactId>
</dependency>
<dependency>
+ <groupId>org.eclipse.jetty.toolchain</groupId>
+ <artifactId>jetty-jakarta-servlet-api</artifactId>
+ </dependency>
+ <!-- END JETTY embedded jars -->
+
+ <dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
@@ -190,8 +198,6 @@
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
- <!-- END JETTY embedded jars -->
-
</dependencies>
<build>