From 798fae98365fba6f0b2fdb245f6f42750a53d126 Mon Sep 17 00:00:00 2001 From: Greg Turnquist Date: Sat, 8 Jun 2019 09:19:53 -0500 Subject: [PATCH] Polishing. --- Jenkinsfile | 16 ++++++++-------- pom.xml | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ffc5f5e..96d537a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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 { diff --git a/pom.xml b/pom.xml index 0d66587..5f2cd73 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.springframework.hateoas.examples spring-hateoas-examples - 1.0.0.BUILD-SNAPSHOT + 0.1.0.BUILD-SNAPSHOT pom Spring HATEOAS - Examples