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.

12345678910111213141516171819202122232425262728293031
  1. description = 'WebServer "API" to write Web Services'
  2. sonarqube {
  3. properties {
  4. property 'sonar.projectName', "${projectTitle} :: WebServer :: WS"
  5. }
  6. }
  7. dependencies {
  8. // please keep the list grouped by configuration and ordered by name
  9. compile 'com.google.guava:guava'
  10. compile project(':sonar-core')
  11. compile project(':server:sonar-webserver-api')
  12. compile project(path: ':sonar-plugin-api', configuration: 'shadow')
  13. compile project(':sonar-plugin-api-impl')
  14. compile project(':sonar-ws')
  15. compileOnly 'com.google.code.findbugs:jsr305'
  16. compileOnly 'javax.servlet:javax.servlet-api'
  17. compileOnly 'org.apache.tomcat.embed:tomcat-embed-core'
  18. testCompile 'com.google.code.findbugs:jsr305'
  19. testCompile 'javax.servlet:javax.servlet-api'
  20. testCompile 'org.apache.tomcat.embed:tomcat-embed-core'
  21. testCompile 'org.mockito:mockito-core'
  22. testFixturesApi project(':sonar-testing-harness')
  23. testFixturesCompileOnly 'com.google.code.findbugs:jsr305'
  24. }