TotalFreedomMod/Jenkinsfile

13 lines
244 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 {
2020-02-10 16:43:07 -05:00
mvn -B package --file pom.xml
2020-02-10 16:35:34 -05:00
archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true
}
}
}
}