Last active
May 5, 2020 08:39
-
-
Save neomatrix369/6582214 to your computer and use it in GitHub Desktop.
settings.xml for SonarQube to be placed into the $HOME/.m2 folder (maven's configuration folder)
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
| <settings> | |
| <profiles> | |
| <profile> | |
| <id>sonar</id> | |
| <activation> | |
| <activeByDefault>true</activeByDefault> | |
| </activation> | |
| <properties> | |
| <!-- Example for MySQL--> | |
| <sonar.jdbc.url> | |
| jdbc:mysql://localhost:3306/sonar?useUnicode=true&characterEncoding=utf8 | |
| </sonar.jdbc.url> | |
| <sonar.jdbc.username>sonar</sonar.jdbc.username> | |
| <sonar.jdbc.password>sonar</sonar.jdbc.password> | |
| <!-- Optional URL to server. Default value is http://localhost:9000 --> | |
| <sonar.host.url> | |
| http://localhost:9000 | |
| </sonar.host.url> | |
| </properties> | |
| </profile> | |
| </profiles> | |
| </settings> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment