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

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. description = 'SonarQube WebServer internal APIs, used by other Web Server modules or Core Extensions'
  2. sonar {
  3. properties {
  4. property 'sonar.projectName', "${projectTitle} :: WebServer :: API"
  5. }
  6. }
  7. sourceSets {
  8. test {
  9. resources {
  10. srcDirs += ['src/test/projects']
  11. }
  12. }
  13. }
  14. dependencies {
  15. // please keep the list grouped by configuration and ordered by name
  16. api 'com.google.guava:guava'
  17. api 'io.jsonwebtoken:jjwt-api'
  18. api 'io.jsonwebtoken:jjwt-impl'
  19. api 'org.sonarsource.api.plugin:sonar-plugin-api'
  20. api project(':sonar-core')
  21. api project(':server:sonar-process')
  22. api project(':server:sonar-server-common')
  23. api project(':sonar-plugin-api-impl')
  24. api 'org.mindrot:jbcrypt'
  25. compileOnlyApi 'com.google.code.findbugs:jsr305'
  26. compileOnlyApi 'javax.servlet:javax.servlet-api'
  27. testImplementation 'org.assertj:assertj-guava'
  28. testImplementation 'com.google.code.findbugs:jsr305'
  29. testImplementation 'com.tngtech.java:junit-dataprovider'
  30. testImplementation 'javax.servlet:javax.servlet-api'
  31. testImplementation 'org.mockito:mockito-core'
  32. testImplementation testFixtures(project(':server:sonar-server-common'))
  33. testImplementation project(':sonar-testing-harness')
  34. testFixturesApi 'junit:junit'
  35. testFixturesCompileOnly 'com.google.code.findbugs:jsr305'
  36. }