Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 'org.subethamail:subethasmtp'
  28. testImplementation 'com.squareup.okhttp3:mockwebserver'
  29. testImplementation 'com.squareup.okhttp3:okhttp-tls'
  30. testImplementation 'com.squareup.okio:okio'
  31. testImplementation 'com.tngtech.java:junit-dataprovider'
  32. testImplementation 'junit:junit'
  33. testImplementation 'org.apache.logging.log4j:log4j-api'
  34. testImplementation 'org.apache.logging.log4j:log4j-core'
  35. testImplementation 'org.assertj:assertj-core'
  36. testImplementation 'org.hamcrest:hamcrest-core'
  37. testImplementation 'org.mockito:mockito-core'
  38. testImplementation 'org.sonarsource.api.plugin:sonar-plugin-api-test-fixtures'
  39. testImplementation testFixtures(project(':server:sonar-db-dao'))
  40. testImplementation testFixtures(project(':server:sonar-webserver-auth'))
  41. testImplementation testFixtures(project(':server:sonar-webserver-es'))
  42. testImplementation project(':sonar-plugin-api-impl')
  43. testImplementation project(':sonar-testing-harness')
  44. testFixturesApi 'junit:junit'
  45. testFixturesApi testFixtures(project(':server:sonar-db-dao'))
  46. testFixturesCompileOnly 'com.google.code.findbugs:jsr305'
  47. testFixturesImplementation 'org.elasticsearch.plugin:transport-netty4-client'
  48. testFixturesImplementation 'org.codelibs.elasticsearch.module:analysis-common'
  49. testFixturesImplementation 'org.codelibs.elasticsearch.module:reindex'
  50. testFixturesImplementation 'org.elasticsearch:mocksocket'
  51. }