#1007 - Reenable spring-next testing profile.

Now that Spring HATEAOS is based on Spring Framework 5.2.0.M3, which has upgraded it's handling of charset variables in web responses, we can go back to also testing against Spring Framework 5.2.0.BUILD-SNAPSHOT.
This commit is contained in:
Greg Turnquist
2019-06-27 13:29:46 -05:00
parent 0a5e8b98e5
commit 0346447e2a

33
Jenkinsfile vendored
View File

@@ -62,6 +62,39 @@ pipeline {
sh "PROFILE=none ci/test.sh"
}
}
stage("test: spring-next (jdk8)") {
agent {
docker {
image 'adoptopenjdk/openjdk8:latest'
args '-v $HOME/.m2:/root/.m2'
}
}
steps {
sh "PROFILE=spring-next ci/test.sh"
}
}
stage("test: spring-next (jdk11)") {
agent {
docker {
image 'adoptopenjdk/openjdk11:latest'
args '-v $HOME/.m2:/root/.m2'
}
}
steps {
sh "PROFILE=spring-next ci/test.sh"
}
}
stage("test: spring-next (jdk12)") {
agent {
docker {
image 'adoptopenjdk/openjdk12:latest'
args '-v $HOME/.m2:/root/.m2'
}
}
steps {
sh "PROFILE=spring-next ci/test.sh"
}
}
}
}