diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 000000000..fe664613c --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,15 @@ +node { + + stage('Checkout') { + git 'https://github.com/ThilakrajKM/spring-petclinic' + } + + stage('Build') { + sh 'mvn clean package' + } + + stage('Archive') { + junit allowEmptyResults: true, testResults: '**/target/**/TEST*.xml' + } + +} \ No newline at end of file