pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'echo build'
sh "mvn clean package -DskipTests=true"
}
stage('Test'){
sh 'echo test'
stage('Deploy') {
sh 'echo publish'