diff --git a/Jenkinsfile b/Jenkinsfile index 8b137891..33d83a93 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1 +1,12 @@ +pipeline { + agent any + stages { + stage('Build') { + steps { + mvn build + archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true + } + } + } +}