TotalFreedomMod/Jenkinsfile

13 lines
225 B
Plaintext
Raw Normal View History

2020-02-10 16:35:34 -05:00
pipeline {
agent any
2020-02-10 16:26:05 -05:00
2020-02-10 16:35:34 -05:00
stages {
stage('Build') {
steps {
mvn build
archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true
}
}
}
}