TotalFreedomMod/Jenkinsfile

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