diff --git a/Jenkinsfile b/Jenkinsfile index b1f4ebe74..fd60ce9fa 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,8 +3,16 @@ pipeline { stages { stage('test') { steps { - echo 'hello world' - sh 'mvn compile' + parallel( + "test": { + echo 'hello world' + + }, + "": { + build 'pet clinic' + + } + ) } } stage('done') {