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

123456789101112131415161718192021222324252627282930313233
  1. description = 'WebServer "API" to write Web Services'
  2. sonar {
  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. api 'com.google.guava:guava'
  10. api 'org.sonarsource.api.plugin:sonar-plugin-api'
  11. api project(':sonar-core')
  12. api project(':server:sonar-webserver-api')
  13. api project(':sonar-plugin-api-impl')
  14. api project(':sonar-ws')
  15. compileOnlyApi 'com.google.code.findbugs:jsr305'
  16. compileOnlyApi 'javax.servlet:javax.servlet-api'
  17. compileOnlyApi 'org.apache.tomcat.embed:tomcat-embed-core'
  18. testImplementation 'com.tngtech.java:junit-dataprovider'
  19. testImplementation 'junit:junit'
  20. testImplementation 'com.google.code.findbugs:jsr305'
  21. testImplementation 'javax.servlet:javax.servlet-api'
  22. testImplementation 'org.apache.tomcat.embed:tomcat-embed-core'
  23. testImplementation 'org.mockito:mockito-core'
  24. testFixturesApi project(':sonar-testing-harness')
  25. testFixturesCompileOnly 'com.google.code.findbugs:jsr305'
  26. }