You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2018/06/29 12:13:09 UTC

[maven-jenkins-lib] 02/02: Add maven version to stageId

This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-jenkins-lib.git

commit 8496179b512a24c21334ae0a5ef7986fce3b03d2
Author: rfscholte <rf...@apache.org>
AuthorDate: Fri Jun 29 14:12:13 2018 +0200

    Add maven version to stageId
---
 vars/asfMavenTlpPlgnBuild.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vars/asfMavenTlpPlgnBuild.groovy b/vars/asfMavenTlpPlgnBuild.groovy
index ac85231..5d706bb 100644
--- a/vars/asfMavenTlpPlgnBuild.groovy
+++ b/vars/asfMavenTlpPlgnBuild.groovy
@@ -109,7 +109,7 @@ def doCreateTask( os, jdk, maven, tasks )
 	cmd += 'verify'
 	def disablePublishers = !first
 	first = false
-	String stageId = "${os}-jdk${jdk}"
+	String stageId = "${os}-jdk${jdk}_m${maven}"
 	tasks[stageId] = {
 	  node(label) {
 		stage("Checkout ${stageId}") {