Skip to content

Commit 0f4c941

Browse files
committed
Use spring-ws-bom dependency
1 parent 727f1eb commit 0f4c941

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

build.gradle

+5-4
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ allprojects {
168168
mavenBom "org.springframework.data:spring-data-bom:$springDataVersion"
169169
mavenBom "org.springframework.amqp:spring-amqp-bom:$springAmqpVersion"
170170
mavenBom "org.springframework.kafka:spring-kafka-bom:$springKafkaVersion"
171+
mavenBom "org.springframework.ws:spring-ws-bom:$springWsVersion"
171172
mavenBom "io.projectreactor:reactor-bom:$reactorVersion"
172173
mavenBom "org.apache.logging.log4j:log4j-bom:$log4jVersion"
173174
mavenBom "org.mockito:mockito-bom:$mockitoVersion"
@@ -1028,14 +1029,14 @@ project('spring-integration-ws') {
10281029
api project(':spring-integration-core')
10291030
api 'org.springframework:spring-oxm'
10301031
api 'org.springframework:spring-webmvc'
1031-
api("org.springframework.ws:spring-ws-core:$springWsVersion") {
1032+
api('org.springframework.ws:spring-ws-core') {
10321033
exclude group: 'org.springframework'
10331034
}
10341035

10351036
providedImplementation "com.sun.xml.bind:jaxb-impl:$jaxbVersion"
10361037

10371038
testImplementation "com.thoughtworks.xstream:xstream:$xstreamVersion"
1038-
testImplementation("org.springframework.ws:spring-ws-support:$springWsVersion") {
1039+
testImplementation('org.springframework.ws:spring-ws-support') {
10391040
exclude group: 'org.springframework'
10401041
}
10411042
testImplementation 'org.springframework:spring-jms'
@@ -1051,10 +1052,10 @@ project('spring-integration-xml') {
10511052
dependencies {
10521053
api project(':spring-integration-core')
10531054
api 'org.springframework:spring-oxm'
1054-
api("org.springframework.ws:spring-xml:$springWsVersion") {
1055+
api('org.springframework.ws:spring-xml') {
10551056
exclude group: 'org.springframework'
10561057
}
1057-
optionalApi("org.springframework.ws:spring-ws-core:$springWsVersion") {
1058+
optionalApi('org.springframework.ws:spring-ws-core') {
10581059
exclude group: 'org.springframework'
10591060
}
10601061

0 commit comments

Comments
 (0)