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. description = 'Compute Engine JVM application'
  2. sonar {
  3. properties {
  4. property 'sonar.projectName', "${projectTitle} :: Compute Engine"
  5. }
  6. }
  7. dependencies {
  8. // please keep the list grouped by configuration and ordered by name
  9. compile 'com.google.guava:guava'
  10. compile 'com.google.protobuf:protobuf-java'
  11. compile 'com.hazelcast:hazelcast'
  12. compile 'com.hazelcast:hazelcast-kubernetes'
  13. compile 'commons-io:commons-io'
  14. compile 'com.zaxxer:HikariCP'
  15. compile 'org.sonarsource.api.plugin:sonar-plugin-api'
  16. compile project(':server:sonar-ce-common')
  17. compile project(':server:sonar-ce-task')
  18. compile project(':server:sonar-ce-task-projectanalysis')
  19. compile project(':server:sonar-process')
  20. compile project(':server:sonar-ce-task')
  21. compile project(':server:sonar-server-common')
  22. compile project(':sonar-core')
  23. compile project(':sonar-plugin-api-impl')
  24. compile project(':sonar-ws')
  25. compileOnly 'com.google.code.findbugs:jsr305'
  26. testCompile 'com.google.code.findbugs:jsr305'
  27. testCompile 'com.tngtech.java:junit-dataprovider'
  28. testCompile 'junit:junit'
  29. testCompile 'org.assertj:assertj-core'
  30. testCompile 'org.awaitility:awaitility'
  31. testCompile 'org.mockito:mockito-core'
  32. testCompile 'org.slf4j:slf4j-api'
  33. testCompile testFixtures(project(':server:sonar-db-dao'))
  34. }