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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. description = 'Definition of a Compute Engine task and utility "framework" and classes to code one'
  2. sonar {
  3. properties {
  4. property 'sonar.projectName', "${projectTitle} :: Compute Engine :: Task"
  5. }
  6. }
  7. sourceSets {
  8. test {
  9. resources {
  10. srcDirs += ['src/test/projects']
  11. }
  12. }
  13. }
  14. dependencies {
  15. // please keep the list grouped by configuration and ordered by name
  16. api 'com.google.guava:guava'
  17. api 'org.slf4j:jul-to-slf4j'
  18. api 'org.slf4j:slf4j-api'
  19. api project(':server:sonar-server-common')
  20. api project(':sonar-core')
  21. compileOnlyApi 'com.google.code.findbugs:jsr305'
  22. compileOnlyApi 'org.sonarsource.api.plugin:sonar-plugin-api'
  23. testImplementation 'ch.qos.logback:logback-access'
  24. testImplementation 'ch.qos.logback:logback-classic'
  25. testImplementation 'ch.qos.logback:logback-core'
  26. testImplementation 'com.google.code.findbugs:jsr305'
  27. testImplementation 'com.tngtech.java:junit-dataprovider'
  28. testImplementation 'junit:junit'
  29. testImplementation 'org.apache.logging.log4j:log4j-api'
  30. testImplementation 'org.apache.logging.log4j:log4j-core'
  31. testImplementation 'org.assertj:assertj-guava'
  32. testImplementation 'org.mockito:mockito-core'
  33. testImplementation 'org.reflections:reflections'
  34. testImplementation testFixtures(project(':server:sonar-db-dao'))
  35. testFixturesApi 'org.assertj:assertj-core'
  36. testFixturesCompileOnly 'com.google.code.findbugs:jsr305'
  37. }