Skip to content

Instantly share code, notes, and snippets.

@naidubrahma
Forked from nkabir/settings.xml
Created August 19, 2019 12:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save naidubrahma/71e587c0118ef9b9d2b7b5752415984e to your computer and use it in GitHub Desktop.
Save naidubrahma/71e587c0118ef9b9d2b7b5752415984e to your computer and use it in GitHub Desktop.
Maven Settings xml for Sonar
<profiles>
<profile>
<id>sonar</id>
<properties>
<sonar.jdbc.url>jdbc:mysql://localhost:3306/sonar</sonar.jdbc.url>
<sonar.jdbc.driver>com.mysql.jdbc.Driver</sonar.jdbc.driver>
<sonar.jdbc.username>sonar</sonar.jdbc.username>
<sonar.jdbc.password>xxxxx</sonar.jdbc.password>
<!-- SERVER ON A REMOTE HOST -->
<sonar.host.url>http://localhost:9000</sonar.host.url>
</properties>
</profile>
</profiles>
<activeProfiles>
<activeProfile>sonar</activeProfile>
</activeProfiles>
@naidubrahma
Copy link
Author

bkjhk

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment