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

12345678910111213141516171819202122232425262728293031323334353637383940
  1. sonarqube {
  2. properties {
  3. property 'sonar.projectName', "${projectTitle} :: Main Process"
  4. }
  5. }
  6. dependencies {
  7. // please keep the list grouped by configuration and ordered by name
  8. compile 'ch.qos.logback:logback-classic'
  9. compile 'ch.qos.logback:logback-core'
  10. // Required by our usage of Guava for clustering : CeWorkerFactoryImpl.getClusteredWorkerUUIDs()
  11. compile 'com.google.guava:guava'
  12. compile 'com.hazelcast:hazelcast'
  13. compile 'commons-io:commons-io'
  14. compile 'commons-lang:commons-lang'
  15. compile 'io.netty:netty-common'
  16. compile 'org.apache.logging.log4j:log4j-to-slf4j'
  17. compile 'org.apache.logging.log4j:log4j-api'
  18. compile 'org.elasticsearch.client:transport'
  19. compile 'org.elasticsearch:elasticsearch'
  20. compile 'org.elasticsearch:elasticsearch-core'
  21. compile 'org.elasticsearch.plugin:transport-netty4-client'
  22. compile 'org.slf4j:slf4j-api'
  23. compile 'org.yaml:snakeyaml'
  24. compile project(':server:sonar-process')
  25. compile project(':sonar-core')
  26. compileOnly 'com.google.code.findbugs:jsr305'
  27. testCompile 'com.google.code.findbugs:jsr305'
  28. testCompile 'com.tngtech.java:junit-dataprovider'
  29. testCompile 'junit:junit'
  30. testCompile 'org.assertj:assertj-core'
  31. testCompile 'org.awaitility:awaitility'
  32. testCompile 'org.mockito:mockito-core'
  33. testCompile project(':sonar-testing-harness')
  34. }