diff --git a/jenkinsfiles/example b/jenkinsfiles/example index 0f110d8f5..1ac352bf0 100644 --- a/jenkinsfiles/example +++ b/jenkinsfiles/example @@ -16,7 +16,7 @@ pipeline { } } steps { - sh 'mvn clean install' + sh 'mvn clean deploy' } } stage('Build container') { @@ -43,7 +43,7 @@ pipeline { stage('Smoke-Test') { agent any steps { - sh 'curl http://localhost:9966/' + sh 'docker ps -a' } } stage('Stop local container') {