diff --git a/Jenkinsfile b/Jenkinsfile index 079f3fb..2df268c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,9 +1,11 @@ pipeline{ agent any + stages{ stage("Bulid"){ steps{ echo 'building the project' + } } stage("test"){ steps{ @@ -12,7 +14,7 @@ pipeline{ } stage("deploy"){ steps{ - echo 'deploying the project ' + sh 'mvn tomcat7:run' } } }