#758 - Centralize all Forward header handling.

Spring 5.1 is centralizing all Forward header handling. This moves critical bits into one location, making it easy to completely remove once we rebaseline against this version.

Also adds a test profile to ensure Spring 5.1 doesn't break anything.

Original pull request: #717.
This commit is contained in:
Greg Turnquist
2018-05-22 14:04:09 -05:00
committed by Oliver Drotbohm
parent 267ff45043
commit bb4a4a615c
6 changed files with 134 additions and 23 deletions

14
pom.xml
View File

@@ -97,6 +97,20 @@
</repositories>
</profile>
<profile>
<id>spring51-next</id>
<properties>
<spring.version>5.1.0.BUILD-SNAPSHOT</spring.version>
<jackson.version>2.9.2</jackson.version>
</properties>
<repositories>
<repository>
<id>spring-libs-snapshot</id>
<url>http://repo.spring.io/libs-snapshot</url>
</repository>
</repositories>
</profile>
<profile>
<!-- Profile to be run on the CI server, JARs JavaDocs -->