Skip to content

Instantly share code, notes, and snippets.

@luismoramedina
Created October 1, 2015 16:21
Show Gist options
  • Save luismoramedina/e33a0ba457d0366c4141 to your computer and use it in GitHub Desktop.
Save luismoramedina/e33a0ba457d0366c4141 to your computer and use it in GitHub Desktop.
Settings.xml for sonar
<profiles>
<profile>
<id>sonar</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<sonar.host.url>http://sonarqube..../</sonar.host.url>
<sonar.login>...</sonar.login>
<sonar.password>...</sonar.password>
<sonar.analysis.mode>incremental</sonar.analysis.mode>
</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