Last active
December 28, 2015 21:19
-
-
Save spikeheap/7563286 to your computer and use it in GitHub Desktop.
Sample settings.xml file demonstrating Sonar integration for Grails. Drop it in your ~/.m2/ directory.
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://sonar.dev | |
</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