Snippets for http://fagner.co/2016/02/05/SonarQube-configuration-tutorial/
Created
February 5, 2016 04:41
-
-
Save fagnercarvalho/84fa963b266d706ada60 to your computer and use it in GitHub Desktop.
2016-02-05-SonarQube-configuration-tutorial
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Required metadata | |
sonar.projectKey=YourProject | |
sonar.projectName=YourProject | |
sonar.projectVersion=1.0 | |
sonar.sourceEncoding=UTF-8 | |
sonar.sources=D:/projects/SonarQube/YourProject | |
# C# specific configuration | |
sonar.dotnet.visualstudio.solution.file=YourProject.sln | |
sonar.dotnet.excludeGeneratedCode=true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sonar.host.url=http://localhost:9000 | |
sonar.jdbc.url=jdbc:sqlserver://localhost;databaseName=SonarQube;integratedSecurity=true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sonar.jdbc.username=username | |
sonar.jdbc.password=password |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sonar.web.port=9000 | |
sonar.jdbc.url=jdbc:sqlserver://localhost;databaseName=SonarQube;integratedSecurity=true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment