Skip to content

Commit

Permalink
Thank You for Choosing to Learn from in28Minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ranga Karanam authored and Ranga Karanam committed Feb 7, 2020
1 parent 05b8eae commit 8ed1de3
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,21 @@ pipeline {
stages {

stage('Checkout') {
checkout scm
steps {
checkout scm
}
}

stage('Build'){
sh "mvn clean compile"
steps {
sh "mvn clean compile"
}
}

stage('Test'){
sh "mvn test"
steps {
sh "mvn test"
}
}
}
}

0 comments on commit 8ed1de3

Please sign in to comment.