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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. description = 'Code shared between the Web Server and the Compute Engine'
  2. sonarqube {
  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. compile 'org.apache.commons:commons-email'
  10. compile 'commons-io:commons-io'
  11. compile 'commons-lang:commons-lang'
  12. compile 'com.google.guava:guava'
  13. compile 'org.slf4j:slf4j-api'
  14. compile 'com.squareup.okhttp3:okhttp'
  15. compile 'org.elasticsearch.client:transport'
  16. compile project(':server:sonar-db-dao')
  17. compile project(':server:sonar-db-migration')
  18. compile project(':server:sonar-process')
  19. compile project(':sonar-core')
  20. compile project(':sonar-markdown')
  21. compile project(path: ':sonar-plugin-api', configuration: 'shadow')
  22. compile project(':sonar-ws')
  23. compileOnly 'com.google.code.findbugs:jsr305'
  24. testCompile 'ch.qos.logback:logback-core'
  25. testCompile 'com.google.code.findbugs:jsr305'
  26. testCompile 'com.squareup.okhttp3:mockwebserver'
  27. testCompile 'com.squareup.okio:okio'
  28. testCompile 'com.tngtech.java:junit-dataprovider'
  29. testCompile 'junit:junit'
  30. testCompile 'org.apache.logging.log4j:log4j-api'
  31. testCompile 'org.apache.logging.log4j:log4j-core'
  32. testCompile 'org.assertj:assertj-core'
  33. testCompile 'org.hamcrest:hamcrest-core'
  34. testCompile 'org.mockito:mockito-core'
  35. testCompile testFixtures(project(':server:sonar-db-dao'))
  36. testCompile project(path: ':sonar-plugin-api', configuration: 'shadow')
  37. testCompile project(':sonar-plugin-api-impl')
  38. testCompile 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.codelibs.elasticsearch.module:analysis-common'
  43. testFixturesImplementation 'org.elasticsearch:mocksocket'
  44. }