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:
Brian Clozel 2021-09-06 19:15:00 +02:00
parent d23afea168
commit 77a6dce1b5
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ dependencies {
optional(project(":spring-web"))
optional("org.eclipse.persistence:org.eclipse.persistence.jpa")
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-context")))
testCompile(testFixtures(project(":spring-core")))