Add files via upload

This commit is contained in:
Xavier 2024-02-12 19:07:12 -05:00 committed by GitHub
parent 836d111e99
commit 34a53f0222
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

11
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'mvn clean package'
}
}
}
}