Just use raw Maven invocations when executing the Pipeline

This commit is contained in:
R. Tyler Croy 2017-12-19 14:52:17 -08:00
parent 18a2a88f39
commit 21732017b7
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
1 changed files with 9 additions and 13 deletions

22
Jenkinsfile vendored
View File

@ -1,15 +1,11 @@
pipeline {
agent {
node {
label 'linux'
agent { docker 'maven:3-alpine' }
stages {
stage('Build') {
steps {
sh 'mvn -e -B -U clean package'
}
}
}
}
stages {
stage('Build') {
steps {
sh 'make'
}
}
}
}
}