Created
March 22, 2012 15:59
-
-
Save nkabir/2159177 to your computer and use it in GitHub Desktop.
Maven Settings xml for Sonar
This file contains 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
<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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment