Skip to content

Commit cf9d705

Browse files
committed
fix: jetty 12.1.3 when using it with Maven (refs #137)
1 parent 3d68017 commit cf9d705

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

build.gradle

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,19 @@ allprojects {
2020

2121
project("wiremock-spring-boot", {
2222
dependencies {
23-
implementation platform("org.eclipse.jetty:jetty-bom:12.1.3")
24-
implementation platform("org.eclipse.jetty.ee10:jetty-ee10-bom:12.1.3")
23+
// Remove these when wiremock-jetty12:jar uses newer jetty
24+
// https://github.com/wiremock/wiremock/issues/3139
25+
implementation "org.eclipse.jetty:jetty-server:12.1.3"
26+
implementation "org.eclipse.jetty:jetty-proxy:12.1.3"
27+
implementation "org.eclipse.jetty:jetty-alpn-server:12.1.3"
28+
implementation "org.eclipse.jetty:jetty-alpn-java-server:12.1.3"
29+
implementation "org.eclipse.jetty:jetty-alpn-java-client:12.1.3"
30+
implementation "org.eclipse.jetty:jetty-alpn-client:12.1.3"
31+
implementation "org.eclipse.jetty.ee10:jetty-ee10-servlet:12.1.3"
32+
implementation "org.eclipse.jetty.ee10:jetty-ee10-servlets:12.1.3"
33+
implementation "org.eclipse.jetty.ee10:jetty-ee10-webapp:12.1.3"
34+
implementation "org.eclipse.jetty.http2:jetty-http2-server:12.1.3"
35+
2536
api "org.wiremock:wiremock-jetty12:3.13.1"
2637

2738
// Don't want to force these versions on the user

0 commit comments

Comments
 (0)