Skip to content
Snippets Groups Projects
Commit 92257938 authored by Phillip R.'s avatar Phillip R.
Browse files

Add Jenkinsfile

parent 839e560b
Branches master
No related tags found
No related merge requests found
pipeline {
agent any
stages {
stage ('Compile Stage') {
steps {
withMaven(maven : 'maven') {
sh 'mvn clean compile'
}
}
}
stage ('Testing Stage') {
steps {
withMaven(maven : 'maven') {
sh 'mvn test'
}
}
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment