aboutsummaryrefslogtreecommitdiffstats
path: root/application
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@yahooinc.com>2022-10-27 17:59:34 +0200
committerBjørn Christian Seime <bjorncs@yahooinc.com>2022-10-27 17:59:34 +0200
commitc93aa5e16d65fc6185cfb4519d211eb627da2b21 (patch)
tree254b3c465afd54e246fb0929070f777b9596b181 /application
parent5259f39f086f4ff8b71a29064830424b45ef3d0b (diff)
Revert "Upgrade Jetty from 9.4.49 to 11.0.12"
This reverts commit c095cbbf433760100e6d1bf04d88b2f6b1b710e8.
Diffstat (limited to 'application')
-rw-r--r--application/pom.xml30
1 files changed, 12 insertions, 18 deletions
diff --git a/application/pom.xml b/application/pom.xml
index 2f0586145b2..8f9dc7999a0 100644
--- a/application/pom.xml
+++ b/application/pom.xml
@@ -139,8 +139,8 @@
<!-- START JETTY embedded jars -->
<dependency>
- <groupId>org.eclipse.jetty.http2</groupId>
- <artifactId>http2-common</artifactId>
+ <groupId>org.eclipse.jetty.alpn</groupId>
+ <artifactId>alpn-api</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.http2</groupId>
@@ -152,43 +152,35 @@
</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-http</artifactId>
- </dependency>
- <dependency>
- <groupId>org.eclipse.jetty</groupId>
- <artifactId>jetty-io</artifactId>
+ <artifactId>jetty-continuation</artifactId>
+ <scope>test</scope>
</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-util</artifactId>
+ <artifactId>jetty-servlets</artifactId>
+ <scope>test</scope>
</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>
@@ -198,6 +190,8 @@
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
+ <!-- END JETTY embedded jars -->
+
</dependencies>
<build>