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

12345678910111213141516171819202122232425
  1. description = 'SonarQube :: Authentication :: Bitbucket'
  2. configurations {
  3. testImplementation.extendsFrom compileOnlyApi
  4. }
  5. dependencies {
  6. // please keep the list ordered
  7. api 'com.github.scribejava:scribejava-apis'
  8. api 'com.github.scribejava:scribejava-core'
  9. api 'com.google.code.gson:gson'
  10. api project(':server:sonar-auth-common')
  11. compileOnlyApi 'com.google.code.findbugs:jsr305'
  12. compileOnlyApi 'com.squareup.okhttp3:okhttp'
  13. compileOnlyApi 'javax.servlet:javax.servlet-api'
  14. compileOnlyApi project(':sonar-core')
  15. testImplementation 'com.squareup.okhttp3:mockwebserver'
  16. testImplementation 'com.squareup.okhttp3:okhttp'
  17. testImplementation 'junit:junit'
  18. testImplementation 'org.assertj:assertj-core'
  19. testImplementation 'org.mockito:mockito-core'
  20. }