diff --git a/Jenkinsfile b/Jenkinsfile index c453fb091..4c5c822fb 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,9 +1,14 @@ pipeline { agent any stages { - stage('No-op') { + stage('Build') { steps { - sh 'ls' + sh './mvnw package' + } + } + stage('test') { + steps { + sh './mvnw package' } } }