Skip to content

Instantly share code, notes, and snippets.

@rpau
Created March 10, 2017 08:53
Show Gist options
  • Save rpau/6d6e44e17dff5fce570390ec8a6548fb to your computer and use it in GitHub Desktop.
Save rpau/6d6e44e17dff5fce570390ec8a6548fb to your computer and use it in GitHub Desktop.
#!groovy
@Library('github.com/walkmod/jenkins-pipeline-shared@declarative') _
pipeline {
agent any
stages {
stage ('Fixing Release'){
steps {
walkmodApply()
}
}
stage ('Check conventions'){
steps {
sh "mvn pmd:check"
}
}
stage('Build') {
steps {
sh "mvn package"
}
}
stage('Results') {
steps {
archive 'target/*.jar'
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment