Browse Source

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
pull/27374/head
Brian Clozel 4 years ago
parent
commit
77a6dce1b5
  1. 2
      spring-orm/spring-orm.gradle

2
spring-orm/spring-orm.gradle

@ -10,7 +10,7 @@ dependencies { @@ -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")))

Loading…
Cancel
Save