HMH Engineering

HMH Engineering builds fantastic software to meet the challenges facing teachers and learners. We enable and support a wide range of next-generation learning experiences, designing and building apps and services used daily by millions of students and educators across the USA.

Follow publication

How to add SonarQube scans and see their results from a Github PR

Francislainy Campos
HMH Engineering
Published in
7 min readNov 10, 2020

--

<sonar.version>3.4.0.905</sonar.version>
<jacoco-maven-plugin.version>0.8.5</jacoco-maven-plugin.version>
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>${sonar.version}</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco-maven-plugin.version}</version>
<configuration>
<destFile>${basedir}/target/jacoco.exec</destFile>
<dataFile>${basedir}/target/jacoco.exec</dataFile>
</configuration>
<executions>
<execution>
<id>jacoco-initialize</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>jacoco-site</id>
<phase>verify</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
<!-- Rules for configuring build failure below a threshold limit based
on code coverage value using Jacoco -->
<id>check</id>
<goals>
<goal>check</goal>
</goals>
<configuration>
<excludes>
<exclude>**/*config*.*</exclude>
</excludes>
<rules>
<rule implementation="org.jacoco.maven.RuleConfiguration">
<element>BUNDLE</element>
<limits>
<limit implementation="org.jacoco.report.check.Limit">
<counter>INSTRUCTION</counter>
<value>COVEREDRATIO</value>
<minimum>0.50</minimum>
</limit>
</limits>
</rule>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<testSourceDirectory>src/test/java/com/my/directory/tests</testSourceDirectory>
<trimStackTrace>false</trimStackTrace>
<excludes>
<exclude>**/SmokeTests.java</exclude>
</excludes>
</configuration>
</plugin>
<profile>
<id>sonar</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<!-- Edit this URL for sonarQube server --> <sonar.host.url>https://sonarqubedeveloper.internal</sonar.host.url>
<sonar.login>mySonarQubeToken</sonar.login>
<sonar.pullrequest.github.repository>HMH-Core/MyRepoNameWithout</sonar.pullrequest.github.repository>
<!-- Sonar-JaCoCo properties -->
<sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
<sonar.jacoco.reportPaths>${basedir}/target/jacoco.exec</sonar.jacoco.reportPaths>
<java.version>1.8</java.version>
<sonar.coverage.exclusions>
**/MyApplication.java, **/*Exception*.java, **/dao/**, **/dto/**, **/entity/**
</sonar.coverage.exclusions>
</properties>
</profile>
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>${sonar.version}</version>
</plugin>
Sonar plugin under Maven helper window on IntelliJ
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco-maven-plugin.version}</version>
<configuration>
<destFile>${basedir}/target/jacoco.exec</destFile>
<dataFile>${basedir}/target/jacoco.exec</dataFile>
</configuration>
<executions>
<execution>
<id>jacoco-initialize</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>jacoco-site</id>
<phase>verify</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
<!-- Rules for configuring build failure below a threshold limit based
on code coverage value using Jacoco -->
<id>check</id>
<goals>
<goal>check</goal>
</goals>
<configuration>
<excludes>
<exclude>**/*config*.*</exclude>
</excludes>
<rules>
<rule implementation="org.jacoco.maven.RuleConfiguration">
<element>BUNDLE</element>
<limits>
<limit implementation="org.jacoco.report.check.Limit">
<counter>INSTRUCTION</counter>
<value>COVEREDRATIO</value>
<minimum>0.50</minimum>
</limit>
</limits>
</rule>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<testSourceDirectory>src/test/java/com/my/directory/tests</testSourceDirectory>
<trimStackTrace>false</trimStackTrace>
<excludes>
<exclude>**/SmokeTests.java</exclude>
</excludes>
</configuration>
</plugin>
<profile>
<id>sonar</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<!-- Edit this URL for sonarQube server --> <sonar.host.url>https://sonarqubedeveloper.internal</sonar.host.url>
<sonar.login>mySonarQubeToken</sonar.login>
<sonar.pullrequest.github.repository>HMH-Core/MyRepoNameWithout</sonar.pullrequest.github.repository>
<!-- Sonar-JaCoCo properties -->
<sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
<sonar.jacoco.reportPaths>${basedir}/target/jacoco.exec</sonar.jacoco.reportPaths>
<java.version>1.8</java.version>
<sonar.coverage.exclusions>
**/MyApplication.java, **/*Exception*.java, **/dao/**, **/dto/**, **/entity/**
</sonar.coverage.exclusions>
</properties>
</profile>
pipeline {
agent {
docker { image "a.linux.image.io/base-ubuntu:16.04-openjdk8_181-builder" }
}

environment {
HOME = "$WORKSPACE"
app_name = 'my_app_name'
docker_group = "my-docker-group"
}

options {
skipStagesAfterUnstable()
}

stages {

stage('Checkout') {
steps {
git credentialsId: 'myGitCredentials', url: "git@my.repo.com:HMH/myrepo.git", branch: "$branch_name"
}
}

stage('Package') {
steps {
sh "mvn clean package"
}
}

stage('Generate Surefire Reports') {
steps {
sh 'mvn surefire-report:report'
}
}

stage('SonarQube') {
steps {
sh "mvn sonar:sonar -Dsonar.login=${sonar_token}"
}
}
}
}
SonarQube path under Jenkins job configuration
Link to SonarQube displayed on terminal once its scan is completed
SonarQube results page
pipeline {
agent {
docker { image "docker.br.hmheng.io/base-ubuntu:16.04-openjdk8_181-builder" }
}

environment {
HOME = "$WORKSPACE"
app_name = 'my-app-name'
docker_group = "my-docker-group"
}

options {
skipStagesAfterUnstable()
}
stages {

stage('Checkout') {
steps {
git credentialsId: 'myGitCredentiala', url: "git@my.repo.com:HMH/myrepo.git", branch: "$branch_name"
}
}

stage('Package') {
steps {
sh "mvn clean package"
}
}

stage('Generate Surefire Reports') {
steps {
sh 'mvn surefire-report:report'
}
}

stage('SonarQube') {
steps {
script {
if (env.CHANGE_ID) {
if (env.CHANGE_BRANCH == "develop") {
env.BASE_BRANCH = "master"
} else {
env.BASE_BRANCH = "develop"
}

sh "mvn sonar:sonar -Dsonar.login=${sonar_token} \
-Dsonar.scm.revisions=${GIT_COMMIT} \
-Dsonar.pullrequest.key=${env.CHANGE_ID} \
-Dsonar.pullrequest.branch=${env.CHANGE_BRANCH} \
-Dsonar.pullrequest.base=${env.BASE_BRANCH}"
}
else {
sh "mvn sonar:sonar -Dsonar.login=${sonar_token}"
}
}
}
}
}
}
Multibranch pipeline Jenkins configuration
Link to PrBuilder file under Jenkins job configuration on Multibranch pipeline
PrBuilder page displaying Pull Requests tab
SonarQube results on Github PR
Link to navigate to SonarQube results page from Github

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Published in HMH Engineering

HMH Engineering builds fantastic software to meet the challenges facing teachers and learners. We enable and support a wide range of next-generation learning experiences, designing and building apps and services used daily by millions of students and educators across the USA.

Written by Francislainy Campos

I like coding, cycling, K-Pop (girl groups), Pokémon and chocolate.

No responses yet

Write a response