This is an automated email from the ASF dual-hosted git repository. olamy pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-parent.git
The following commit(s) were added to refs/heads/master by this push: new 8d57248 fix jdk names 8d57248 is described below commit 8d57248637ade2de3d034efef4c116fe762326eb Author: olivier lamy <ol...@apache.org> AuthorDate: Fri Apr 10 10:52:44 2020 +1000 fix jdk names Signed-off-by: olivier lamy <ol...@apache.org> --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0bd3ab7..0fb0afd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,10 +14,10 @@ pipeline { agent { node { label 'ubuntu' } } options { timeout( time: 120, unit: 'MINUTES' ) } steps { - mavenBuild( "jdk11", "clean install" ) + mavenBuild( "JDK 1.8 (latest)", "clean install" ) script { if (env.BRANCH_NAME == 'master') { - mavenBuild( "jdk8", "deploy" ) + mavenBuild( "JDK 1.8 (latest)", "deploy" ) } } } @@ -26,7 +26,7 @@ pipeline { agent { node { label 'ubuntu' } } options { timeout( time: 120, unit: 'MINUTES' ) } steps { - mavenBuild( "jdk11", "clean install" ) + mavenBuild( "JDK 11 (latest)", "clean install" ) } } } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org