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. api 'com.google.guava:guava'
  9. api 'commons-lang:commons-lang'
  10. api 'commons-codec:commons-codec'
  11. api 'com.fasterxml.staxmate:staxmate'
  12. api project(':server:sonar-db-core')
  13. api project(':server:sonar-process')
  14. api project(':sonar-core')
  15. compileOnlyApi 'com.google.code.findbugs:jsr305'
  16. testImplementation 'com.google.code.findbugs:jsr305'
  17. testImplementation 'com.tngtech.java:junit-dataprovider'
  18. testImplementation 'commons-dbutils:commons-dbutils'
  19. testImplementation 'com.squareup.okhttp3:mockwebserver'
  20. testImplementation 'junit:junit'
  21. testImplementation 'org.assertj:assertj-core'
  22. testImplementation 'org.mindrot:jbcrypt'
  23. testImplementation 'org.mockito:mockito-core'
  24. testImplementation 'org.xmlunit:xmlunit-core'
  25. testImplementation 'org.xmlunit:xmlunit-matchers'
  26. testImplementation project(':sonar-scanner-protocol')
  27. testImplementation project(':sonar-testing-harness')
  28. testImplementation testFixtures(project(':server:sonar-db-core'))
  29. testRuntimeOnly 'com.h2database:h2'
  30. testRuntimeOnly 'com.microsoft.sqlserver:mssql-jdbc'
  31. testRuntimeOnly 'com.oracle.database.jdbc:ojdbc8'
  32. testRuntimeOnly 'org.postgresql:postgresql'
  33. }
  34. test {
  35. systemProperty 'orchestrator.configUrl', System.getProperty('orchestrator.configUrl')
  36. }