From 8b03274e4aab816db072a2baa5bd4c33c6ffc0c0 Mon Sep 17 00:00:00 2001 From: Harry Smith Date: Wed, 10 Jun 2020 13:39:35 +0100 Subject: [PATCH] No Jira : correct junitPublisher typo --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5ff4523bd..2768a4a00 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -53,7 +53,7 @@ pipeline { sh "git push origin HEAD:${BRANCH_NAME} --tags" } timeout(time: 10, unit: 'MINUTES') { - withMaven(options: [jUnitPublisher(disabled: true)]) { + withMaven(options: [junitPublisher(disabled: true)]) { sh "mvn -B -V -U -T4 clean deploy -DaltReleaseDeploymentRepository=releases::default::https://nexus.greshamtech.com/repository/thirdparty-maven-releases/" } } @@ -72,7 +72,7 @@ pipeline { } steps { timeout(time: 10, unit: 'MINUTES') { - withMaven(options: [jUnitPublisher(disabled: true)]) { + withMaven(options: [junitPublisher(disabled: true)]) { sh "mvn -B -V -U -T4 clean deploy -DaltSnapshotDeploymentRepository=snapshots::default::https://nexus.greshamtech.com/repository/thirdparty-maven-snapshots/" } }