You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.gradle 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. sonar {
  2. properties {
  3. property 'sonar.projectName', "${projectTitle} :: Database Migration"
  4. }
  5. }
  6. dependencies {
  7. // please keep the list grouped by configuration and ordered by name
  8. compile 'com.google.guava:guava'
  9. compile 'commons-lang:commons-lang'
  10. compile 'commons-codec:commons-codec'
  11. compile 'com.fasterxml.staxmate:staxmate'
  12. compile project(':server:sonar-db-core')
  13. compile project(':server:sonar-process')
  14. compile project(':sonar-core')
  15. compileOnly 'com.google.code.findbugs:jsr305'
  16. testCompile 'com.google.code.findbugs:jsr305'
  17. testCompile 'com.tngtech.java:junit-dataprovider'
  18. testCompile 'commons-dbutils:commons-dbutils'
  19. testCompile 'com.squareup.okhttp3:mockwebserver'
  20. testCompile 'junit:junit'
  21. testCompile 'org.assertj:assertj-core'
  22. testCompile 'org.mindrot:jbcrypt'
  23. testCompile 'org.mockito:mockito-core'
  24. testCompile 'org.xmlunit:xmlunit-core'
  25. testCompile 'org.xmlunit:xmlunit-matchers'
  26. testCompile project(':sonar-scanner-protocol')
  27. testCompile project(':sonar-testing-harness')
  28. testCompile testFixtures(project(':server:sonar-db-core'))
  29. testRuntime 'com.h2database:h2'
  30. testRuntime 'com.microsoft.sqlserver:mssql-jdbc'
  31. testRuntime 'com.oracle.database.jdbc:ojdbc8'
  32. testRuntime 'org.postgresql:postgresql'
  33. }
  34. test {
  35. systemProperty 'orchestrator.configUrl', System.getProperty('orchestrator.configUrl')
  36. }