diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 000000000..2429d3515 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,13 @@ +pipeline { + agent any + stages { + stage('Build') { + steps { + echo 'Running build automation' + sh './mvnw package' + sh 'java -jar target/*.jar' + + } + } + } +}