TotalFreedomMod/Jenkinsfile
Robinson Gallego 1744eaac69
lets test this
2020-02-10 16:35:34 -05:00

13 lines
225 B
Groovy

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