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

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