Add compatibility testing for Framework 6.1
Closes gh-905
This commit is contained in:
@@ -82,3 +82,10 @@ components.java.withVariantsFromConfiguration(configurations.testFixturesApiElem
|
||||
components.java.withVariantsFromConfiguration(configurations.testFixturesRuntimeElements) {
|
||||
skip()
|
||||
}
|
||||
|
||||
compatibilityTest {
|
||||
dependency("Spring Framework") { springFramework ->
|
||||
springFramework.groupId = "org.springframework"
|
||||
springFramework.versions = ["6.1.+"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,3 +22,10 @@ dependencies {
|
||||
testImplementation("org.hamcrest:hamcrest-library")
|
||||
testImplementation("org.mockito:mockito-core")
|
||||
}
|
||||
|
||||
compatibilityTest {
|
||||
dependency("Spring Framework") { springFramework ->
|
||||
springFramework.groupId = "org.springframework"
|
||||
springFramework.versions = ["6.1.+"]
|
||||
}
|
||||
}
|
||||
@@ -21,3 +21,10 @@ dependencies {
|
||||
|
||||
testRuntimeOnly("org.springframework:spring-context")
|
||||
}
|
||||
|
||||
compatibilityTest {
|
||||
dependency("Spring Framework") { springFramework ->
|
||||
springFramework.groupId = "org.springframework"
|
||||
springFramework.versions = ["6.1.+"]
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user