lets test this

This commit is contained in:
Robinson Gallego 2020-02-10 16:35:34 -05:00 committed by GitHub
parent 9874fe0ed5
commit 1744eaac69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

11
Jenkinsfile vendored
View File

@ -1 +1,12 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
mvn build
archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true
}
}
}
}