diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 000000000..e819d6983 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,31 @@ +pipeline { + agent any + stages { + stage('Clone') { + steps { + echo 'Cloning from repositories' + } + } + stage('Build') { + steps { + echo 'Build the maven project' + sh 'mvn clean install' + } + } + stage('Testing') { + steps { + echo 'Testing the project' + } + } + stage('Deploy') { + steps { + echo 'Deploying the project' + } + } + stage('Notify') { + steps { + echo 'send email' + } + } + } +}