Is there a way to integrate the sonarlint plugin into pom.xml

I want to add the sonarlint plugin to my project. When I build with maven, the plugin should automatically turn on without my intervention. Can I do it?

+6
source share
1 answer

SonarLint is designed to be used locally in each developer box before pushing code to SCM.

For continuous integration, you must use the SonarQube. This will allow you to get a complete picture of the quality of the project code.

You can use the SonarQube Scanner for Maven and the Jenkins plugin to perform analysis and download the results.

-1
source

All Articles