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

12345678910111213141516171819202122232425262728293031323334353637383940
  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-webmvc-core'
  9. api 'org.springframework:spring-webmvc'
  10. api 'org.hibernate:hibernate-validator'
  11. api 'javax.el:javax.el-api'
  12. api 'org.glassfish:jakarta.el'
  13. api project(':server:sonar-db-dao')
  14. api project(':server:sonar-webserver-common')
  15. testImplementation 'javax.servlet:javax.servlet-api'
  16. testImplementation 'org.junit.jupiter:junit-jupiter-api'
  17. testImplementation 'org.mockito:mockito-core'
  18. testImplementation 'org.mockito:mockito-junit-jupiter'
  19. testImplementation 'org.skyscreamer:jsonassert:1.5.1'
  20. testImplementation 'org.sonarsource.api.plugin:sonar-plugin-api-test-fixtures'
  21. testImplementation 'com.tngtech.java:junit-dataprovider'
  22. testImplementation project(':sonar-testing-harness')
  23. testImplementation testFixtures(project(':server:sonar-server-common'))
  24. testImplementation testFixtures(project(':server:sonar-webserver-auth'))
  25. testFixturesApi 'org.springframework:spring-test'
  26. testRuntimeOnly 'org.apache.logging.log4j:log4j-core'
  27. testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
  28. testRuntimeOnly 'org.junit.vintage:junit-vintage-engine'
  29. }
  30. test {
  31. // Enabling the JUnit Platform (see https://github.com/junit-team/junit5-samples/tree/master/junit5-migration-gradle)
  32. useJUnitPlatform()
  33. }