diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 000000000..c758837da --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,14 @@ +pipeline { + agent any + tools { + maven 'maven-3.5.0' + } + stages { + stage ('Build') { + steps { + git 'https://github.com/liatrio/spring-petclinic' + sh 'mvn clean install' + } + } + } +}