Skip to content

Commit ebafa4d

Browse files
committed
Start building against Spring WS 5.0.0-M1 snapshots
See gh-45873
1 parent 9f979c1 commit ebafa4d

File tree

2 files changed

+2
-2
lines changed
  • spring-boot-project
    • spring-boot-dependencies
    • spring-boot-docs/src/main/kotlin/org/springframework/boot/docs/io/webservices/template

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2378,7 +2378,7 @@ bom {
23782378
releaseNotes("https://github.com/spring-projects/spring-session/releases/tag/{version}")
23792379
}
23802380
}
2381-
library("Spring WS", "4.1.0-SNAPSHOT") {
2381+
library("Spring WS", "5.0.0-SNAPSHOT") {
23822382
considerSnapshots()
23832383
group("org.springframework.ws") {
23842384
bom("spring-ws-bom")

spring-boot-project/spring-boot-docs/src/main/kotlin/org/springframework/boot/docs/io/webservices/template/MyService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class MyService(webServiceTemplateBuilder: WebServiceTemplateBuilder) {
3030
webServiceTemplate = webServiceTemplateBuilder.build()
3131
}
3232

33-
fun someWsCall(detailsReq: SomeRequest?): SomeResponse {
33+
fun someWsCall(detailsReq: SomeRequest): SomeResponse {
3434
return webServiceTemplate.marshalSendAndReceive(
3535
detailsReq,
3636
SoapActionCallback("https://ws.example.com/action")

0 commit comments

Comments
 (0)