File tree Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -3,4 +3,5 @@ version=4.0.12-SNAPSHOT
3
3
org.gradle.caching =true
4
4
org.gradle.parallel =true
5
5
6
+ compatibilityTestPluginVersion =0.0.3
6
7
springFrameworkVersion =6.1.18
Original file line number Diff line number Diff line change 1
1
plugins {
2
2
id " java-library"
3
3
id " maven-publish"
4
+ id " io.spring.compatibility-test" version " ${ compatibilityTestPluginVersion} "
4
5
id " org.springframework.ws.conventions"
5
6
id " org.springframework.ws.optional-dependencies"
6
7
}
@@ -58,3 +59,10 @@ dependencies {
58
59
testImplementation(" org.springframework:spring-webflux" )
59
60
testImplementation(" org.xmlunit:xmlunit-assertj" )
60
61
}
62
+
63
+ compatibilityTest {
64
+ dependency(" Spring Framework" ) { springFramework ->
65
+ springFramework. groupId = " org.springframework"
66
+ springFramework. versions = [" 6.0.+" , " 6.2.+" ]
67
+ }
68
+ }
Original file line number Diff line number Diff line change 1
1
plugins {
2
2
id " java-library"
3
3
id " maven-publish"
4
+ id " io.spring.compatibility-test" version " ${ compatibilityTestPluginVersion} "
4
5
id " org.springframework.ws.conventions"
5
6
id " org.springframework.ws.optional-dependencies"
6
7
}
@@ -31,3 +32,11 @@ dependencies {
31
32
testImplementation(" org.junit.jupiter:junit-jupiter" )
32
33
testImplementation(" org.springframework:spring-test" )
33
34
}
35
+
36
+ compatibilityTest {
37
+ dependency(" Spring Security" ) { springSecurity ->
38
+ springSecurity. groupId = " org.springframework.security"
39
+ springSecurity. versions = [" 6.2.+" , " 6.3.+" , " 6.4.+" ]
40
+ }
41
+ }
42
+
You can’t perform that action at this time.
0 commit comments