Spring 5.1 is centralizing all Forward header handling. This moves critical bits into one location, making it easy to completely remove once we re-baseline against this version. Also adds a test profile to ensure Spring 5.1 doesn't break anything. Original pull request: #717.
21 lines
365 B
YAML
21 lines
365 B
YAML
language: java
|
|
jdk:
|
|
- oraclejdk8
|
|
env:
|
|
matrix:
|
|
- PROFILE=non-existant
|
|
- PROFILE=spring43-next
|
|
- PROFILE=spring5
|
|
- PROFILE=spring5-next
|
|
- PROFILE=spring51-next
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- oracle-java8-installer
|
|
cache:
|
|
directories:
|
|
- $HOME/.m2
|
|
sudo: false
|
|
install: true
|
|
script: "mvn clean dependency:list test -P${PROFILE} -Dsort"
|