Commit 828121e4 authored by Josh Steinberg's avatar Josh Steinberg

update jacoco

parent c7b058ca
...@@ -20,17 +20,16 @@ pipeline { ...@@ -20,17 +20,16 @@ pipeline {
} }
stage('Build') { stage('Build') {
steps { steps {
sh 'mvn -B -DskipTests clean install' sh 'mvn clean install'
} }
} }
stage('Sonarqube'){ stage('Sonarqube'){
steps{ steps{
echo "running Sonar ******************************************************" echo "running Sonar ******************************************************"
sh "ls -al"
sh "ls target"
withSonarQubeEnv('sonar'){ withSonarQubeEnv('sonar'){
sh 'mvn clean package sonar:sonar' sh 'mvn clean package sonar:sonar'
} }
sh "ls target"
} }
} }
stage("Quality Gate"){ stage("Quality Gate"){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment