Skip to content

Commit 90a4cc3

Browse files
committed
Make Jetty version configurable via command line for testing new version or snapshot
Signed-off-by: Olivier Lamy <[email protected]>
1 parent 207c8f5 commit 90a4cc3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spring-boot-project/spring-boot-dependencies/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1014,14 +1014,14 @@ bom {
10141014
releaseNotes("https://github.com/eclipse-ee4j/jersey/releases/tag/{version}")
10151015
}
10161016
}
1017-
library("Jetty Reactive HTTPClient", "4.0.9") {
1017+
library("Jetty Reactive HTTPClient", project.getProperties().get("jetty.reactive.httpclient.version","4.0.9")) {
10181018
group("org.eclipse.jetty") {
10191019
modules = [
10201020
"jetty-reactive-httpclient"
10211021
]
10221022
}
10231023
}
1024-
library("Jetty", "12.0.16") {
1024+
library("Jetty", project.getProperties().get("jetty.version","12.0.16")) {
10251025
prohibit {
10261026
contains ".alpha"
10271027
because "we don't want alpha dependencies"
@@ -1037,7 +1037,7 @@ bom {
10371037
]
10381038
}
10391039
links {
1040-
site("https://eclipse.dev/jetty")
1040+
site("https://jetty.org/")
10411041
javadoc(version -> "https://javadoc.jetty.org/jetty-%s".formatted(version.major()), "org.eclipse.jetty")
10421042
releaseNotes("https://github.com/jetty/jetty.project/releases/tag/jetty-{version}")
10431043
}

0 commit comments

Comments
 (0)