develop #1

Manually merged
iparenteau merged 3 commits from develop into master 2020-05-22 13:56:40 -05:00
2 changed files with 51 additions and 11 deletions
Showing only changes of commit f1baf6cbc9 - Show all commits

15
Jenkinsfile vendored
View File

@ -108,17 +108,18 @@ def getSha1() {
}
def mvn(args) {
// add node and maven tools to path before calling maven
def mvnHome = tool name: 'maven-3.6.1'
env.PATH = "${mvnHome}/bin:${env.PATH}"
withMaven(
maven: 'maven-3.6.1',
mavenSettingsConfig: 'locusworks-settings'
) {
sh "mvn ${args}"
}
}
def mvn_initial(args) {
// add node and maven tools to path before calling maven
def mvnHome = tool name: 'maven-3.6.1'
env.PATH = "${mvnHome}/bin:${env.PATH}"
sh "mvn ${args}"
mvn(args)
}
def set_result(status) {