Posts

Showing posts with the label sonar

Creating first Jenkins pipeline: tutorial

Image
Jenkins uses a feature called Jenkins Pipeline which is a collection of jobs that brings the software from version control into the hands of the end-users by using automation tools. They represent multiple Jenkins jobs as one whole workflow in the form of a pipeline. In this blog, I am going to share my knowledge on how can we write multiple Jenkins jobs as a pipeline and it uses two different syntaxes i.e. Declarative and Scripted pipeline and i n our examples, we're going to use the Scripted Pipeline which is following a more imperative programming model built with Groovy. Prerequisite: Code on bitbucket/ GitHub Jenkins Installation Download required plugins to run pipelines like Pipeline, SonarQube Scanner, Check Style, Junit, Git Integration, Maven Integration. Sonar up and running.   Let’s start creating pipeline will do below tasks: Clone  Project from Jenkins Build and run Junit test cases Run Sonar Run Checkstyle Package it as a jar file ...

Sonar Integration with Maven

Image
In my previous blog , we have already seen how to setup SonarQube server on Windows 10. We have also seen that how can we generate sonar report using sonar-scanner . In this blog, I’ll show you how to generate sonar report by configuring sonar dependency to maven project.  Steps to setup sonar in Maven We have to configure pluginManagement and Profile for Sonar in pom.xml file Add below pluginManagement dependency to your pom.xml  <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> </plugin> <plugin> <groupId>org.sonarsource.scanner.maven</groupId> ...

Code Analysis using SonarScanner on Windows 10

Image
In my previous blog , we have already seen how to setup SonarQube server on Windows 10. In this blog, I’ll show you how to generate sonar report using SonarScanner.  Step to setup SonarQube Download SonarScanner from https://docs.sonarqube.org/latest/analysis/scan/sonarscanner/ . Set SonarScanner to PATH under Environment Variable. Unzip it and open sonar-scanner.properties which are under conf directory. Edit the below lines Now, go to your project folder directory, open command prompt and run sonar-scanner.bat. It will do the analysis and then post the result to the SonarQube server http://locathost:9000/ having the project name as sonar key that we have configured in sonar-scanner.properties file. You can check the JUnit test code coverage as well by clicking on Coverage. Happy Coding..!!!

SonarQube setup on windows 10

Image
Overview SonarQube is an automatic code review tool to detect bugs, vulnerabilities and code smell in your code. It can integrate with your existing workflow to enable continuous code inspection across your project branches and pull requests.  Prerequisite Make sure you have JAVA 11 or higher version installed on your window machine. Step to setup SonarQube Download Community edition from https://www.sonarqube.org/downloads/ Extract it and go to the bin folder. Choose windows-x86–32 or windows-x86–64 based on your machine configuration. Run StartSonar.bat which will start the SonarQube server.  Open browser and hit http://localhost:9000 If you want, you can start the sonarQube server to a different port by just updating the port number (sonar.web.port=9070) to sonar.properties which is present under conf directory. You can login to the portal using default credential (admin:admin). Congratulation! SonarQube server is up and running on loca...