APIv3/Jenkinsfile

9 lines
204 B
Plaintext
Raw Normal View History

2016-05-21 21:30:58 +02:00
node {
stage 'Git Clone'
checkout scm
stage 'Maven Compile'
sh 'mvn clean deploy -U'
stage 'Jenkins Archive'
step([$class: 'ArtifactArchiver', artifacts: 'target/*.jar', fingerprint: true])
}