TotalFreedomMod/Jenkinsfile

13 lines
225 B
Plaintext
Raw Normal View History

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