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. api 'com.google.guava:guava'
  10. api 'com.google.protobuf:protobuf-java'
  11. api 'com.hazelcast:hazelcast'
  12. api 'com.hazelcast:hazelcast-kubernetes'
  13. api 'commons-io:commons-io'
  14. api 'com.zaxxer:HikariCP'
  15. api 'org.sonarsource.api.plugin:sonar-plugin-api'
  16. api project(':server:sonar-ce-common')
  17. api project(':server:sonar-ce-task')
  18. api project(':server:sonar-ce-task-projectanalysis')
  19. api project(':server:sonar-process')
  20. api project(':server:sonar-ce-task')
  21. api project(':server:sonar-server-common')
  22. api project(':sonar-core')
  23. api project(':sonar-plugin-api-impl')
  24. api project(':sonar-ws')
  25. compileOnlyApi 'com.google.code.findbugs:jsr305'
  26. testImplementation 'com.google.code.findbugs:jsr305'
  27. testImplementation 'com.tngtech.java:junit-dataprovider'
  28. testImplementation 'junit:junit'
  29. testImplementation 'org.assertj:assertj-core'
  30. testImplementation 'org.awaitility:awaitility'
  31. testImplementation 'org.mockito:mockito-core'
  32. testImplementation 'org.slf4j:slf4j-api'
  33. testImplementation testFixtures(project(':server:sonar-db-dao'))
  34. }