Advertisement
Guest User

Sonar Gradle config

a guest
Dec 29th, 2012
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. sonar {
  2. server {
  3. url = "http://sonar.server.org"
  4. }
  5. database {
  6. url = "jdbc:mysql://localhost:3306/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true"
  7. driverClassName = "com.mysql.jdbc.Driver"
  8. username = "sonar"
  9. password = "sonar"
  10. }
  11. sonar.withGlobalProperties {
  12. props ->
  13. props["sonar.login"] = "sonarUser"
  14. props["sonar.password"] = "sonarPW"
  15. }
  16. project {
  17. language = "java"
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement