Guest User

Untitled

a guest
Nov 20th, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. pipeline {
  2. agent {
  3. docker {
  4. image 'maven:3-alpine'
  5. args '-v /root/.m2:/root/.m2'
  6. }
  7. }
  8. stages {
  9. stage('Build') {
  10. steps {
  11. build 'ProjectB'
  12. sh 'mvn -B -DskipTests clean package'
  13. }
  14. }
  15. }
Add Comment
Please, Sign In to add comment