Advertisement
Guest User

Untitled

a guest
Apr 30th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3.  
  4. <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
  5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  6. xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
  7. <servers>
  8.  
  9. <pluginGroups>
  10. <pluginGroup>org.sonarsource.scanner.maven</pluginGroup>
  11. </pluginGroups>
  12.  
  13. <profiles>
  14. <profile>
  15. <id>sonar</id>
  16. <activation>
  17. <activeByDefault>true</activeByDefault>
  18. </activation>
  19. <properties>
  20. <!-- <sonar.jdbc.url>jdbc:mysql://ec2-54-218-89-26.us-west-2.compute.amazonaws.com:3306/sonar</sonar.jdbc.url>
  21. <sonar.jdbc.driver>com.mysql.jdbc.Driver</sonar.jdbc.driver>
  22. <sonar.jdbc.username>sonar</sonar.jdbc.username>
  23. <sonar.jdbc.password>sonar</sonar.jdbc.password>
  24. SERVER ON A REMOTE HOST -->
  25. <sonar.host.url>http://ec2-54-218-89-26.us-west-2.compute.amazonaws.com:9000</sonar.host.url>
  26. </properties>
  27. </profile>
  28. </profiles>
  29. </settings>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement