Review Servlet API version in Spring OXM tests
This commit ensures that Servlet 4.0+ is used in the Spring OXM test suite, as Servlet 4 specific APIs are used in the tests. This problem was uncovered while fixing gh-27365
This commit is contained in:
parent
d23afea168
commit
77a6dce1b5
|
@ -10,7 +10,7 @@ dependencies {
|
||||||
optional(project(":spring-web"))
|
optional(project(":spring-web"))
|
||||||
optional("org.eclipse.persistence:org.eclipse.persistence.jpa")
|
optional("org.eclipse.persistence:org.eclipse.persistence.jpa")
|
||||||
optional("org.hibernate:hibernate-core")
|
optional("org.hibernate:hibernate-core")
|
||||||
optional("javax.servlet:javax.servlet-api:3.1.0")
|
optional("javax.servlet:javax.servlet-api")
|
||||||
testCompile(testFixtures(project(":spring-beans")))
|
testCompile(testFixtures(project(":spring-beans")))
|
||||||
testCompile(testFixtures(project(":spring-context")))
|
testCompile(testFixtures(project(":spring-context")))
|
||||||
testCompile(testFixtures(project(":spring-core")))
|
testCompile(testFixtures(project(":spring-core")))
|
||||||
|
|
Loading…
Reference in New Issue