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

123456789101112131415161718192021222324252627282930313233343536
  1. sonar {
  2. properties {
  3. property 'sonar.projectName', "${projectTitle} :: Process"
  4. }
  5. }
  6. dependencies {
  7. // please keep the list grouped by configuration and ordered by name
  8. api 'ch.qos.logback:logback-classic'
  9. api 'ch.qos.logback:logback-core'
  10. api 'commons-codec:commons-codec'
  11. api 'commons-io:commons-io'
  12. api 'commons-lang:commons-lang'
  13. api 'com.google.code.gson:gson'
  14. api 'com.google.guava:guava'
  15. api 'com.google.protobuf:protobuf-java'
  16. api 'com.hazelcast:hazelcast'
  17. api 'com.hazelcast:hazelcast-kubernetes'
  18. api 'org.slf4j:jul-to-slf4j'
  19. api 'org.slf4j:slf4j-api'
  20. api 'org.sonarsource.api.plugin:sonar-plugin-api'
  21. api project(':sonar-core')
  22. compileOnlyApi 'com.google.code.findbugs:jsr305'
  23. testImplementation 'com.google.code.findbugs:jsr305'
  24. testImplementation 'com.google.protobuf:protobuf-java'
  25. testImplementation 'com.tngtech.java:junit-dataprovider'
  26. testImplementation 'junit:junit'
  27. testImplementation 'org.assertj:assertj-core'
  28. testImplementation 'org.hamcrest:hamcrest-core'
  29. testImplementation 'org.mockito:mockito-core'
  30. testImplementation 'org.awaitility:awaitility'
  31. testImplementation project(':sonar-testing-harness')
  32. }