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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. description = 'Definition of a Compute Engine task and utility "framework" and classes to code one'
  2. sonarqube {
  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. compile 'org.picocontainer:picocontainer'
  17. compile 'org.slf4j:jul-to-slf4j'
  18. compile 'org.slf4j:slf4j-api'
  19. compile project(':server:sonar-process')
  20. compile project(':server:sonar-server-common')
  21. compile project(':sonar-core')
  22. compileOnly project(path: ':sonar-plugin-api')
  23. compileOnly 'com.google.code.findbugs:jsr305'
  24. testCompile 'ch.qos.logback:logback-access'
  25. testCompile 'ch.qos.logback:logback-classic'
  26. testCompile 'ch.qos.logback:logback-core'
  27. testCompile 'com.google.code.findbugs:jsr305'
  28. testCompile 'com.h2database:h2'
  29. testCompile 'com.tngtech.java:junit-dataprovider'
  30. testCompile 'junit:junit'
  31. testCompile 'org.apache.logging.log4j:log4j-api'
  32. testCompile 'org.apache.logging.log4j:log4j-core'
  33. testCompile 'org.assertj:assertj-core'
  34. testCompile 'org.assertj:assertj-guava'
  35. testCompile 'org.mockito:mockito-core'
  36. testCompile 'org.reflections:reflections'
  37. testCompile project(':server:sonar-db-testing')
  38. }
  39. task testJar(type: Jar) {
  40. classifier = 'tests'
  41. from sourceSets.test.output
  42. }
  43. configurations {
  44. tests
  45. }
  46. artifacts {
  47. tests testJar
  48. }