Skip to content

Commit c823957

Browse files
committed
Merge branch '4.0.x'
Closes gh-1501
2 parents 2bc415b + c32f65e commit c823957

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ version=4.1.0-SNAPSHOT
33
org.gradle.caching=true
44
org.gradle.parallel=true
55

6+
compatibilityTestPluginVersion=0.0.3
67
springFrameworkVersion=6.2.4

spring-ws-security/build.gradle

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
plugins {
22
id "java-library"
33
id "maven-publish"
4+
id "io.spring.compatibility-test" version "${compatibilityTestPluginVersion}"
45
id "org.springframework.ws.conventions"
56
id "org.springframework.ws.optional-dependencies"
67
}
@@ -36,3 +37,11 @@ dependencies {
3637
testImplementation("org.junit.jupiter:junit-jupiter")
3738
testImplementation("org.springframework:spring-test")
3839
}
40+
41+
compatibilityTest {
42+
dependency("WSS4J") { wss4j ->
43+
wss4j.groupId = "org.apache.wss4"
44+
wss4j.versions = ["2.0.+", "3.0.+"]
45+
}
46+
}
47+

0 commit comments

Comments
 (0)