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 703B

123456789101112131415161718192021222324
  1. sonarqube {
  2. properties {
  3. property 'sonar.projectName', "${projectTitle} :: Compute Engine"
  4. }
  5. }
  6. dependencies {
  7. // please keep the list grouped by configuration and ordered by name
  8. compile 'com.google.protobuf:protobuf-java'
  9. compile 'org.nanohttpd:nanohttpd'
  10. compile project(':server:sonar-server')
  11. compileOnly 'com.google.code.findbugs:jsr305'
  12. testCompile 'com.google.code.findbugs:jsr305'
  13. testCompile 'com.h2database:h2'
  14. testCompile 'com.tngtech.java:junit-dataprovider'
  15. testCompile 'junit:junit'
  16. testCompile 'org.assertj:assertj-core'
  17. testCompile 'org.assertj:assertj-guava'
  18. testCompile 'org.mockito:mockito-core'
  19. testCompile project(':server:sonar-db-testing')
  20. }