From 1744eaac6965cf0ae4169578a0a44dc8a908adc9 Mon Sep 17 00:00:00 2001 From: Robinson Gallego Date: Mon, 10 Feb 2020 16:35:34 -0500 Subject: [PATCH] lets test this --- Jenkinsfile | 11 +++++++++++ 1 file changed, 11 insertions(+) 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 + } + } + } +}