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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. description = 'Code shared between the Web Server and the Compute Engine'
  2. sonar {
  3. properties {
  4. property 'sonar.projectName', "${projectTitle} :: Server :: Common"
  5. }
  6. }
  7. dependencies {
  8. // please keep the list grouped by configuration and ordered by name
  9. api 'org.apache.commons:commons-email'
  10. api 'commons-io:commons-io'
  11. api 'commons-lang:commons-lang'
  12. api 'com.google.guava:guava'
  13. api 'org.slf4j:slf4j-api'
  14. api 'com.squareup.okhttp3:okhttp'
  15. api 'org.elasticsearch.client:elasticsearch-rest-high-level-client'
  16. api 'org.sonarsource.api.plugin:sonar-plugin-api'
  17. api project(':server:sonar-db-dao')
  18. api project(':server:sonar-db-migration')
  19. api project(':server:sonar-process')
  20. api project(':sonar-core')
  21. api project(':sonar-markdown')
  22. api project(':sonar-ws')
  23. compileOnlyApi 'com.google.code.findbugs:jsr305'
  24. testImplementation 'org.elasticsearch.plugin:transport-netty4-client'
  25. testImplementation 'ch.qos.logback:logback-core'
  26. testImplementation 'com.google.code.findbugs:jsr305'
  27. testImplementation 'com.squareup.okhttp3:mockwebserver'
  28. testImplementation 'com.squareup.okio:okio'
  29. testImplementation 'com.tngtech.java:junit-dataprovider'
  30. testImplementation 'junit:junit'
  31. testImplementation 'org.apache.logging.log4j:log4j-api'
  32. testImplementation 'org.apache.logging.log4j:log4j-core'
  33. testImplementation 'org.assertj:assertj-core'
  34. testImplementation 'org.hamcrest:hamcrest-core'
  35. testImplementation 'org.mockito:mockito-core'
  36. testImplementation testFixtures(project(':server:sonar-db-dao'))
  37. testImplementation project(':sonar-plugin-api-impl')
  38. testImplementation project(':sonar-testing-harness')
  39. testFixturesApi 'junit:junit'
  40. testFixturesApi testFixtures(project(':server:sonar-db-dao'))
  41. testFixturesCompileOnly 'com.google.code.findbugs:jsr305'
  42. testFixturesImplementation 'org.elasticsearch.plugin:transport-netty4-client'
  43. testFixturesImplementation 'org.codelibs.elasticsearch.module:analysis-common'
  44. testFixturesImplementation 'org.codelibs.elasticsearch.module:reindex'
  45. testFixturesImplementation 'org.elasticsearch:mocksocket'
  46. }