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.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 'org.sonarsource.api.plugin:sonar-plugin-api-test-fixtures'
  27. testImplementation project(':sonar-scanner-protocol')
  28. testImplementation project(':sonar-testing-harness')
  29. testImplementation testFixtures(project(':server:sonar-db-core'))
  30. testFixturesImplementation 'org.sonarsource.orchestrator:sonar-orchestrator-junit4'
  31. testFixturesImplementation testFixtures(project(':server:sonar-db-core'))
  32. testRuntimeOnly 'com.h2database:h2'
  33. testRuntimeOnly 'com.microsoft.sqlserver:mssql-jdbc'
  34. testRuntimeOnly 'com.oracle.database.jdbc:ojdbc11'
  35. testRuntimeOnly 'org.postgresql:postgresql'
  36. }
  37. test {
  38. systemProperty 'orchestrator.configUrl', System.getProperty('orchestrator.configUrl')
  39. }