updated mvn command

This commit is contained in:
matthewpdias 2018-03-07 14:08:21 -08:00
parent 905e3e9e4c
commit ac575a4f16

View file

@ -16,7 +16,7 @@ pipeline {
} }
} }
steps { steps {
sh 'mvn clean install' sh 'mvn clean deploy'
} }
} }
stage('Build container') { stage('Build container') {
@ -43,7 +43,7 @@ pipeline {
stage('Smoke-Test') { stage('Smoke-Test') {
agent any agent any
steps { steps {
sh 'curl http://localhost:9966/' sh 'docker ps -a'
} }
} }
stage('Stop local container') { stage('Stop local container') {