newmaster

This commit is contained in:
khalilalturk 2020-03-16 01:16:13 -04:00
parent cfd8ef08b3
commit 9cec6a9375

30
Jenkinsfile vendored
View file

@ -5,34 +5,6 @@ pipeline {
steps {
sh './mvnw package'
}
}
stage('Test') {
steps {
sh 'mvn test'
}
}
stage('Package') {
steps {
sh 'mvn package'
}
}
stage('Deploy') {
when {
branch 'master'
}
steps {
sh './mvnw deploy'
}
}
}
}
} }
}