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

123456789101112131415161718192021222324
  1. sonarqube {
  2. properties {
  3. property 'sonar.projectName', "${projectTitle} :: WebServer :: WebAPIV2"
  4. }
  5. }
  6. dependencies {
  7. // please keep the list grouped by configuration and ordered by name
  8. api 'org.springdoc:springdoc-openapi-ui'
  9. api 'org.springframework:spring-webmvc'
  10. api project(':server:sonar-db-dao')
  11. // We are not suppose to have a v1 dependency. The ideal would be to have another common module between webapi and webapi-v2 but that needs a lot of refactoring.
  12. api project(':server:sonar-webserver-webapi')
  13. testImplementation 'org.mockito:mockito-core'
  14. testImplementation 'org.springframework:spring-test'
  15. testImplementation 'org.skyscreamer:jsonassert:1.5.1'
  16. testImplementation testFixtures(project(':server:sonar-server-common'))
  17. testImplementation project(':sonar-testing-harness')
  18. }