This is an automated email from the ASF dual-hosted git repository. ieugen pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-site.git
The following commit(s) were added to refs/heads/master by this push: new ef46ee6 [JAMES-3226] Fixed publish in Jenkinsfile - using specific maven version in tools { } ef46ee6 is described below commit ef46ee6225bc478bd6d7c4ce90e87dde86dadccc Author: Eugen Stan <eu...@ieugen.ro> AuthorDate: Mon Jul 20 12:41:40 2020 +0300 [JAMES-3226] Fixed publish in Jenkinsfile - using specific maven version in tools { } --- Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index e7d8d72..0a1a168 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -20,6 +20,7 @@ def AGENT_LABEL = env.AGENT_LABEL ?: 'ubuntu' def JDK_NAME = env.JDK_NAME ?: 'JDK 11 (latest)' +def MAVEN_NAME = 'Maven 3 (latest)' pipeline { @@ -33,6 +34,7 @@ pipeline { tools { jdk JDK_NAME + maven MAVEN_NAME } options {