jenkinsfile tools test

This commit is contained in:
yetju000 2019-11-23 10:30:30 +01:00
parent f16d33f82f
commit 43a28488a8

8
Jenkinsfile vendored
View File

@ -6,13 +6,19 @@ pipeline {
}
stages {
stage('Build') {
stage('Initialize') {
steps {
sh '''
echo "PATH = ${PATH}"
echo "M2_HOME = ${M2_HOME}"
'''
}
}
stage('Build') {
steps {
echo 'Building..'
sh 'cd BackEnd'
sh 'mvn clean install'
}
}
stage('Test') {