Polishing.

This commit is contained in:
Greg Turnquist
2019-06-08 09:19:53 -05:00
parent 18294fb3aa
commit 798fae9836
2 changed files with 9 additions and 9 deletions

16
Jenkinsfile vendored
View File

@@ -24,26 +24,26 @@ pipeline {
stage("Test other configurations") {
parallel {
stage("test: baseline (jdk11)") {
stage("test: spring5 (jdk8)") {
agent {
docker {
image 'adoptopenjdk/openjdk11:latest'
image 'adoptopenjdk/openjdk8:latest'
args '-v $HOME/.m2:/root/.m2'
}
}
steps {
sh "PROFILE=none ci/test.sh"
sh "PROFILE=spring5 ci/test.sh"
}
}
stage("test: baseline (jdk12)") {
stage("test: spring5-next (jdk8)") {
agent {
docker {
image 'adoptopenjdk/openjdk12:latest'
image 'adoptopenjdk/openjdk8:latest'
args '-v $HOME/.m2:/root/.m2'
}
}
steps {
sh "PROFILE=none ci/test.sh"
sh "PROFILE=spring5-next ci/test.sh"
}
}
}
@@ -99,7 +99,7 @@ pipeline {
}
stage('Promote to Bintray') {
when {
branch 'release'
branch 'release-0.x'
}
agent {
docker {
@@ -133,7 +133,7 @@ pipeline {
}
stage('Sync to Maven Central') {
when {
branch 'release'
branch 'release-0.x'
}
agent {
docker {

View File

@@ -5,7 +5,7 @@
<groupId>org.springframework.hateoas.examples</groupId>
<artifactId>spring-hateoas-examples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>0.1.0.BUILD-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Spring HATEOAS - Examples</name>